Files
guilan-ace-deployment/prometheus.yml
Amirhossein Khalili b4c6b3c012
Some checks failed
Deployment CI/CD / validate (push) Has been cancelled
Deployment CI/CD / deploy (push) Has been cancelled
initial commit
2026-05-19 20:57:09 +03:30

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"]