nebula/monitoring/config/prometheus.yml

45 lines
895 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'
2018-06-04 15:50:47 +00:00
scrape_interval: 15m
2018-03-07 20:12:21 +00:00
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:
2018-06-04 15:50:47 +00:00
- targets: ['192.168.1.111:1111']
2018-02-09 20:56:31 +00:00
2018-06-04 10:00:17 +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:
- targets: ['act-exporter:3000']
rule_files:
- "alert.rules"