-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathprometheus.yml
78 lines (74 loc) · 1.98 KB
/
prometheus.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
global:
scrape_interval: 15s
evaluation_interval: 15s
rule_files:
# - "first.rules"
# - "second.rules"
scrape_configs:
# system
- job_name: prometheus
scrape_interval: 5s
static_configs:
- targets: ["localhost:9090"]
- job_name: node_exporter
scrape_interval: 5s
static_configs:
- targets: ["node-exporter:9100"]
# L1 mainnet
- job_name: reth
scrape_interval: 5s
static_configs:
- targets: ["reth:9420"]
- job_name: lighthouse
scrape_interval: 5s
static_configs:
- targets: ["lighthouse:5054"]
- job_name: eth_metrics_exporter
scrape_interval: 5s
static_configs:
- targets: ["eth-metrics-exporter:9300"]
# L1 Sepolia
- job_name: sepolia-reth
scrape_interval: 5s
static_configs:
- targets: ["sepolia-reth:9421"]
- job_name: sepolia-lighthouse
scrape_interval: 5s
static_configs:
- targets: ["sepolia-lighthouse:5057"]
- job_name: eth_metrics_exporter_sepolia
scrape_interval: 5s
static_configs:
- targets: ["sepolia-eth-metrics-exporter:9301"]
# L2 - OP Mainnet
- job_name: op-node
scrape_interval: 5s
static_configs:
- targets: ["op-node:7308"]
- job_name: op-geth
scrape_interval: 5s
metrics_path: /debug/metrics/prometheus
static_configs:
- targets: ["op-geth:6060"]
- labels:
chain: op-mainnet
- job_name: eth_metrics_exporter_op_mainnet
scrape_interval: 5s
static_configs:
- targets: ["l2-mainnet-eth-metrics-exporter:9302"]
# L2 - OP Sepolia
- job_name: op-sepolia-geth
scrape_interval: 5s
metrics_path: /debug/metrics/prometheus
static_configs:
- targets: ["op-sepolia-geth:6061"]
- labels:
chain: op-sepolia
- job_name: op-sepolia-node
scrape_interval: 5s
static_configs:
- targets: ["op-sepolia-node:7309"]
- job_name: eth_metrics_exporter_op_sepolia
scrape_interval: 5s
static_configs:
- targets: ["l2-sepolia-eth-metrics-exporter:9303"]