nebula/monitoring/config/prometheus.yml

44 lines
864 B
YAML

global:
scrape_interval: 15s
external_labels:
monitor: "docker-monitor"
scrape_configs:
- job_name: "prometheus"
static_configs:
- targets: ["localhost:9090"]
- job_name: "node"
scrape_interval: 5s
static_configs:
- targets: ["nodeexporter:9100"]
- job_name: 'cadvisor'
scrape_interval: 5s
static_configs:
- targets: ['cadvisor:8080']
- job_name: 'speedtest'
scrape_interval: 1h
scrape_timeout: 2m
static_configs:
- targets: ['speedtest:9696']
- job_name: 'docker'
scrape_interval: 5s
static_configs:
- targets: ['192.168.1.111:1337']
- job_name: 'traefik'
scrape_interval: 5s
static_configs:
- targets: ['traefik:1111']
- job_name: 'act'
scrape_interval: 5m
static_configs:
- targets: ['act-exporter:3000']
rule_files:
- "alert.rules"