forked from cerc-io/stack-orchestrator
9ba410b095
* Setup Prometheus and Grafana for monitoring stack * Add dashboard for azimuth watchers * Add a dashboard for sushiswap watcher * Persist prometheus server data * Additional metrics in watcher dashboards * Update dashboards and add for merkl sushiswap watcher * Add dashboards for remaining azimuth watchers * Separate out preconfigured watcher dashboards and add instructions * Keep the empty dashboards dir
22 lines
491 B
YAML
22 lines
491 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
grafana:
|
|
image: grafana/grafana
|
|
restart: always
|
|
volumes:
|
|
- ../config/monitoring/grafana/provisioning:/etc/grafana/provisioning
|
|
- ../config/monitoring/grafana/dashboards:/etc/grafana/dashboards
|
|
- grafana_storage:/var/lib/grafana
|
|
ports:
|
|
- "3000"
|
|
healthcheck:
|
|
test: ["CMD", "nc", "-vz", "localhost", "3000"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 10
|
|
start_period: 3s
|
|
|
|
volumes:
|
|
grafana_storage:
|