# Prometheus scrape config for the dev observability stack. Retention is # a CLI flag in the compose command, not here. Targets are reached by # Docker DNS (compose service names) on galaxy-dev-internal; nothing is # published to the host. global: scrape_interval: 30s evaluation_interval: 30s scrape_configs: - job_name: backend static_configs: - targets: ["galaxy-backend:9100"] - job_name: gateway static_configs: - targets: ["galaxy-api:9191"] - job_name: node static_configs: - targets: ["galaxy-node-exporter:9100"] - job_name: cadvisor static_configs: - targets: ["galaxy-cadvisor:8080"] - job_name: prometheus static_configs: - targets: ["localhost:9090"]