forked from cerc-io/stack-orchestrator
Thomas E Lackey
ed9c253f61
* Simplified, improved default dashboard for mainnet-eth-metrics. * Add missing lighthouse prometheus config.
27 lines
563 B
YAML
27 lines
563 B
YAML
global:
|
|
scrape_interval: 5s
|
|
evaluation_interval: 15s
|
|
|
|
scrape_configs:
|
|
# geth
|
|
- job_name: 'geth'
|
|
metrics_path: /debug/metrics/prometheus
|
|
scheme: http
|
|
static_configs:
|
|
- targets: ['mainnet-eth-geth-1:6060']
|
|
|
|
# lighthouse
|
|
- job_name: 'lighthouse'
|
|
metrics_path: /metrics
|
|
scheme: http
|
|
static_configs:
|
|
- targets: ['mainnet-eth-lighthouse-1:5054']
|
|
|
|
# keycloak
|
|
- job_name: 'keycloak'
|
|
scrape_interval: 5s
|
|
metrics_path: /auth/realms/cerc/metrics
|
|
scheme: http
|
|
static_configs:
|
|
- targets: ['keycloak:8080']
|