mirror of
https://github.com/ChainSafe/lodestar.git
synced 2026-01-08 07:14:05 -05:00
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.
13 lines
300 B
YAML
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"]
|