mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-27 23:37:42 +02:00
feat(grafana): add GlitchTip error tracking dashboard
- Add PostgreSQL datasource pointing to GlitchTip database - Add Error Tracking dashboard with 7 panels: - Total Open Issues (stat) - Issues by Project (pie chart) - Total Events (stat) - Projects Tracked (stat) - Resolved vs Unresolved (stat) - New Issues Over Time (stacked bar chart, 30 days) - Recent Issues (table with 50 latest, color-coded levels) - Dashboard links to GlitchTip UI for detailed investigation Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
afbf5ef00a
commit
f264e9f2ae
2 changed files with 189 additions and 0 deletions
23
docker/grafana/provisioning/datasources/glitchtip.yml
Normal file
23
docker/grafana/provisioning/datasources/glitchtip.yml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# GlitchTip PostgreSQL Datasource
|
||||
# Enables error tracking dashboards in Grafana
|
||||
|
||||
apiVersion: 1
|
||||
|
||||
datasources:
|
||||
- name: GlitchTip
|
||||
type: postgres
|
||||
access: proxy
|
||||
url: postgres:5432
|
||||
user: postgres
|
||||
secureJsonData:
|
||||
password: ${POSTGRES_PASSWORD}
|
||||
jsonData:
|
||||
database: glitchtip
|
||||
sslmode: disable
|
||||
maxOpenConns: 5
|
||||
maxIdleConns: 2
|
||||
connMaxLifetime: 14400
|
||||
postgresVersion: 1600
|
||||
timescaledb: false
|
||||
isDefault: false
|
||||
editable: true
|
||||
Loading…
Add table
Add a link
Reference in a new issue