mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 17:39:40 +02:00
- Add explicit uid: deploy-tracking to datasource provisioning - Add instant: true to all Prometheus stat/gauge panel queries - Pushgateway gauges need instant queries, not range queries Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
24 lines
533 B
YAML
24 lines
533 B
YAML
# Deploy Tracking PostgreSQL Datasource
|
|
# Queries deploy_tracking schema in the mana database
|
|
|
|
apiVersion: 1
|
|
|
|
datasources:
|
|
- name: DeployTracking
|
|
uid: deploy-tracking
|
|
type: postgres
|
|
access: proxy
|
|
url: postgres:5432
|
|
user: postgres
|
|
secureJsonData:
|
|
password: ${POSTGRES_PASSWORD}
|
|
jsonData:
|
|
database: mana
|
|
sslmode: disable
|
|
maxOpenConns: 5
|
|
maxIdleConns: 2
|
|
connMaxLifetime: 14400
|
|
postgresVersion: 1600
|
|
timescaledb: false
|
|
isDefault: false
|
|
editable: true
|