blob: faf3581840fd17b67c8f512e5bd8d786bde5d9c4 (
plain) (
blame)
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
|
# prometheus configuration ~~ {{ path_prometheusconfig }}
# managed by Ansible
global:
scrape_interval: 15s
evaluation_interval: 15s
alerting:
alertmanagers:
- static_configs:
- targets:
# - alertmanager:9093
rule_files:
# - "first_rules.yml"
# - "second_rules.yml"
scrape_configs:
- job_name: "prometheus"
static_configs:
- targets: ["127.0.0.1:9090"]
- job_name: "node_exporter"
scrape_interval: 5s
static_configs:
- targets: ["127.0.0.1:9100"]
|