27 lines
532 B
YAML
27 lines
532 B
YAML
global:
|
|
scrape_interval: 15s
|
|
evaluation_interval: 15s
|
|
|
|
scrape_configs:
|
|
- job_name: "prometheus"
|
|
static_configs:
|
|
- targets: ["prometheus:9090"]
|
|
|
|
- job_name: "node"
|
|
static_configs:
|
|
- targets: ["node_exporter:9100"]
|
|
|
|
- job_name: "traefik"
|
|
metrics_path: /metrics
|
|
static_configs:
|
|
- targets: ["traefik:8082"]
|
|
|
|
- job_name: "redis"
|
|
static_configs:
|
|
- targets: ["redis_exporter:9121"]
|
|
|
|
- job_name: "django"
|
|
metrics_path: /metrics
|
|
static_configs:
|
|
- targets: ["web:8000"]
|