initial commit
Some checks failed
Deployment CI/CD / validate (push) Has been cancelled
Deployment CI/CD / deploy (push) Has been cancelled

This commit is contained in:
2026-05-19 20:57:09 +03:30
commit b4c6b3c012
13 changed files with 649 additions and 0 deletions

26
prometheus.yml Normal file
View File

@@ -0,0 +1,26 @@
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"]