Files
lodestar/prometheus.yml
Nico Flaig 0582f418ae Use job name to differentiate beacon and validator metrics (#4952)
Grafana dashboards now use the "job" default label instead of "scrape_location"
custom label to differentiate between beacon and validator metrics.

The prometheus config files are updated to use the expected job name.
2023-01-12 12:01:20 -05:00

13 lines
300 B
YAML

scrape_configs:
- job_name: beacon
scrape_interval: 5s
metrics_path: /metrics
static_configs:
- targets: ["localhost:8008"]
- job_name: validator
scrape_interval: 20s
scrape_timeout: 20s
metrics_path: /metrics
static_configs:
- targets: ["localhost:5064"]