# Prometheus scrape config (S-16c, ADR-0023). Each .NET service exposes OTel metrics # at /metrics (Prometheus text format); one scrape job per service, so the service is # identified by the `job` label in the golden-signal dashboard. Targets are reached by # compose service name on the shared `cg` network (internal port 8080). global: scrape_interval: 15s scrape_configs: - job_name: prometheus static_configs: - targets: ['localhost:9090'] - job_name: acl static_configs: - targets: ['acl:8080'] - job_name: domain static_configs: - targets: ['domain:8080'] - job_name: bff static_configs: - targets: ['bff:8080'] - job_name: event-subscriber static_configs: - targets: ['event-subscriber:8080'] - job_name: projection-api static_configs: - targets: ['projection-api:8080']