nebula/monitoring/config/prometheus.yml

45 lines
904 B
YAML
Raw Normal View History

global:
scrape_interval: 15s
external_labels:
2019-05-12 12:43:48 +00:00
monitor: "docker-monitor"
scrape_configs:
2019-05-12 12:43:48 +00:00
- job_name: "prometheus"
static_configs:
2019-05-12 12:43:48 +00:00
- targets: ["localhost:9090"]
2019-05-12 12:43:48 +00:00
- job_name: "node"
scrape_interval: 5s
static_configs:
2019-05-12 12:43:48 +00:00
- targets: ["nodeexporter:9100"]
2018-01-06 09:09:49 +00:00
2019-05-12 12:43:48 +00:00
- job_name: "cadvisor"
2018-01-06 09:09:49 +00:00
scrape_interval: 5s
static_configs:
2019-05-12 12:43:48 +00:00
- targets: ["cadvisor:8080"]
2019-05-12 12:43:48 +00:00
- job_name: "speedtest"
2018-06-04 15:50:47 +00:00
scrape_interval: 15m
2018-03-07 20:12:21 +00:00
scrape_timeout: 2m
static_configs:
2019-05-12 12:43:48 +00:00
- targets: ["speedtest:9696"]
2018-03-07 20:12:21 +00:00
2019-05-12 12:43:48 +00:00
- job_name: "docker"
2018-01-06 10:25:39 +00:00
scrape_interval: 5s
static_configs:
2019-05-12 12:43:48 +00:00
- targets: ["192.168.1.111:1337"]
2018-01-06 10:25:39 +00:00
2019-05-12 12:43:48 +00:00
- job_name: "traefik"
2018-02-09 20:56:31 +00:00
scrape_interval: 5s
static_configs:
2019-05-12 12:43:48 +00:00
- targets: ["192.168.1.111:1111"]
2018-02-09 20:56:31 +00:00
2019-05-12 12:43:48 +00:00
- job_name: "act"
2018-06-04 15:50:47 +00:00
scrape_interval: 15m
2018-06-04 14:10:58 +00:00
scrape_timeout: 1m
2018-06-04 10:00:17 +00:00
static_configs:
2019-05-12 12:43:48 +00:00
- targets: ["act-exporter.docker:3000"]
2018-06-04 10:00:17 +00:00
rule_files:
2019-05-12 12:43:48 +00:00
- "alert.rules"