nebula/monitoring/config/prometheus.yml

39 lines
760 B
YAML
Raw Normal View History

global:
scrape_interval: 15s
external_labels:
monitor: "docker-monitor"
scrape_configs:
- job_name: "prometheus"
static_configs:
2018-01-06 10:25:39 +00:00
- targets: ["localhost:9090"]
- job_name: "node"
scrape_interval: 5s
static_configs:
2018-01-06 09:09:49 +00:00
- targets: ["nodeexporter:9100"]
- job_name: 'cadvisor'
scrape_interval: 5s
static_configs:
- targets: ['cadvisor:8080']
2018-03-07 20:12:21 +00:00
- job_name: 'speedtest'
scrape_interval: 1h
scrape_timeout: 2m
static_configs:
- targets: ['speedtest:9696']
- job_name: 'docker'
2018-01-06 10:25:39 +00:00
scrape_interval: 5s
static_configs:
2018-03-07 20:12:21 +00:00
- targets: ['192.168.1.111:1337']
2018-01-06 10:25:39 +00:00
2018-02-09 20:56:31 +00:00
- job_name: 'traefik'
scrape_interval: 5s
static_configs:
- targets: ['traefik:1111']
rule_files:
- "alert.rules"