File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
infra/ansible/playbooks/templates/prometheus Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ global:
2+ scrape_interval: 15s
3+
4+ # A scrape configuration containing exactly one endpoint to scrape.
5+ scrape_configs:
6+
7+ - job_name: "aligned-aggregator"
8+ scrape_interval: 1s
9+ static_configs:
10+ - targets: [ "{{ aligned_aggregator_prometheus_ip }}" ]
11+ labels:
12+ bot: "aggregator"
13+
14+ - job_name: "aligned-operator"
15+ scrape_interval: 1s
16+ static_configs:
17+ - targets: [ "{{ aligned_operator_prometheus_ip }}" ]
18+ labels:
19+ bot: "operator"
20+
21+ - job_name: "aligned-batcher"
22+ scrape_interval: 1s
23+ static_configs:
24+ - targets: [ "{{ aligned_batcher_prometheus_ip }}" ]
25+ labels:
26+ bot: "batcher"
27+
28+ - job_name: "aligned-tracker"
29+ scrape_interval: 1s
30+ static_configs:
31+ - targets: [ "{{ aligned_tracker_prometheus_ip }}" ]
32+ labels:
33+ bot: "tracker"
You can’t perform that action at this time.
0 commit comments