Some checks failed
CI/CD Pipeline / Code Quality Checks (push) Failing after 6m9s
CI/CD Pipeline / Security Scanning (push) Successful in 26s
CI/CD Pipeline / Tests (3.11) (push) Failing after 5m24s
CI/CD Pipeline / Tests (3.12) (push) Failing after 5m23s
CI/CD Pipeline / Build Docker Image (push) Has been skipped
CI/CD Pipeline / Deploy to Staging (push) Has been skipped
CI/CD Pipeline / Deploy to Production (push) Has been skipped
CI/CD Pipeline / Notification (push) Successful in 1s
34 lines
741 B
YAML
34 lines
741 B
YAML
global:
|
|
scrape_interval: 15s
|
|
evaluation_interval: 15s
|
|
|
|
rule_files:
|
|
# - "first_rules.yml"
|
|
# - "second_rules.yml"
|
|
|
|
scrape_configs:
|
|
- job_name: 'prometheus'
|
|
static_configs:
|
|
- targets: ['localhost:9090']
|
|
|
|
- job_name: 'guardden-bot'
|
|
static_configs:
|
|
- targets: ['bot:8001']
|
|
scrape_interval: 10s
|
|
metrics_path: '/metrics'
|
|
|
|
- job_name: 'guardden-dashboard'
|
|
static_configs:
|
|
- targets: ['dashboard:8000']
|
|
scrape_interval: 10s
|
|
metrics_path: '/metrics'
|
|
|
|
- job_name: 'postgres-exporter'
|
|
static_configs:
|
|
- targets: ['postgres-exporter:9187']
|
|
scrape_interval: 30s
|
|
|
|
- job_name: 'redis-exporter'
|
|
static_configs:
|
|
- targets: ['redis-exporter:9121']
|
|
scrape_interval: 30s |