You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
405 B
YAML
24 lines
405 B
YAML
5 years ago
|
global:
|
||
|
scrape_interval: 10s
|
||
|
evaluation_interval: 60s
|
||
|
|
||
|
external_labels:
|
||
|
monitor: django-monitor
|
||
|
|
||
|
scrape_configs:
|
||
|
- job_name: "prometheus"
|
||
|
static_configs:
|
||
|
- targets: ["localhost:9090"]
|
||
|
- job_name: "django"
|
||
|
static_configs:
|
||
|
- targets: ["gunicorn:8000"]
|
||
|
|
||
|
alerting:
|
||
|
alertmanagers:
|
||
|
- static_configs:
|
||
|
- targets:
|
||
|
# - alertmanager:9093
|
||
|
|
||
|
rule_files:
|
||
|
- "django_rules.yml"
|