monitoring/conf/prometheus/prometheus.yml

35 lines
559 B
YAML
Raw Normal View History

2022-04-22 20:16:39 +02:00
global:
scrape_interval: 20s
rule_files:
2025-01-06 08:50:27 +01:00
- alerts/*.yml
2022-04-22 20:16:39 +02:00
alerting:
alertmanagers:
2025-01-06 08:50:27 +01:00
- static_configs:
- targets:
- alertmanager:9093
2022-04-22 20:16:39 +02:00
2025-01-06 08:50:27 +01:00
scrape_config_files:
- scrapes/*.yml
2022-12-10 09:46:22 +01:00
2025-01-06 08:50:27 +01:00
scrape_configs:
2023-03-05 08:58:53 +01:00
2025-01-06 08:50:27 +01:00
- job_name: "prometheus"
scrape_interval: 5s
static_configs:
- targets: [ "localhost:9090" ]
2023-03-05 08:58:53 +01:00
2025-01-06 08:50:27 +01:00
- job_name: "alertmanager"
scrape_interval: 5s
static_configs:
- targets: [ "alertmanager:9093" ]
2022-04-22 20:16:39 +02:00
2025-01-06 08:50:27 +01:00
- job_name: "node"
static_configs:
- targets: [ "node-exporter:9100" ]
2022-04-22 20:16:39 +02:00
2025-01-06 08:50:27 +01:00
- job_name: "cadvisor"
static_configs:
- targets: [ "cadvisor:8080" ]