30 lines
639 B
YAML
30 lines
639 B
YAML
# Grafana Datasource Configuration for MEV Bot Monitoring
|
|
|
|
apiVersion: 1
|
|
|
|
datasources:
|
|
- name: Prometheus
|
|
type: prometheus
|
|
access: proxy
|
|
url: http://prometheus:9090
|
|
isDefault: true
|
|
jsonData:
|
|
timeInterval: "15s"
|
|
editable: true
|
|
|
|
- name: PostgreSQL
|
|
type: postgres
|
|
access: proxy
|
|
url: postgres:5432
|
|
database: mevbot_production
|
|
user: mevbot_production
|
|
secureJsonData:
|
|
password: $POSTGRES_PASSWORD
|
|
jsonData:
|
|
sslmode: "disable"
|
|
maxOpenConns: 10
|
|
maxIdleConns: 5
|
|
connMaxLifetime: 14400
|
|
postgresVersion: 1500
|
|
timescaledb: false
|
|
editable: true |