mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:01:09 +02:00
feat(error-tracking): add GlitchTip integration with shared error-tracking package
Infrastructure: - Add GlitchTip (web + worker) to docker-compose.macmini.yml (port 8020) - Add glitchtip.mana.how to Cloudflare Tunnel config - Add glitchtip database to init-db SQL - Add GLITCHTIP_DSN to .env.development Shared Package (@manacore/shared-error-tracking): - initErrorTracking() - Sentry-compatible init with GlitchTip DSN - captureException(), captureMessage(), setUser(), setTag(), flush() - SentryExceptionFilter for NestJS (captures 5xx errors only) - Graceful no-op when DSN is not configured Integration: - Add instrument.ts to calendar, contacts, todo backends - Import instrument.ts before app bootstrap in all 3 main.ts files - Error tracking auto-initializes when GLITCHTIP_DSN env var is set Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
54c1326c14
commit
b11e1284dc
16 changed files with 1360 additions and 320 deletions
|
|
@ -2,6 +2,7 @@
|
|||
-- This script runs on first container initialization
|
||||
|
||||
-- Core databases
|
||||
CREATE DATABASE IF NOT EXISTS glitchtip;
|
||||
CREATE DATABASE IF NOT EXISTS chat;
|
||||
CREATE DATABASE IF NOT EXISTS zitare;
|
||||
CREATE DATABASE IF NOT EXISTS contacts;
|
||||
|
|
@ -36,4 +37,5 @@ GRANT ALL PRIVILEGES ON DATABASE techbase TO manacore;
|
|||
GRANT ALL PRIVILEGES ON DATABASE voxel_lava TO manacore;
|
||||
GRANT ALL PRIVILEGES ON DATABASE figgos TO manacore;
|
||||
GRANT ALL PRIVILEGES ON DATABASE context TO manacore;
|
||||
GRANT ALL PRIVILEGES ON DATABASE glitchtip TO manacore;
|
||||
GRANT ALL PRIVILEGES ON DATABASE manacore TO manacore;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue