31 lines
653 B
YAML
31 lines
653 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: 'seo-worker'
|
||
|
static_configs:
|
||
|
- targets: ['worker:9090']
|
||
|
metrics_path: '/metrics'
|
||
|
scrape_interval: 30s
|
||
|
scrape_timeout: 10s
|
||
|
|
||
|
- job_name: 'redis'
|
||
|
static_configs:
|
||
|
- targets: ['redis:6379']
|
||
|
metrics_path: '/metrics'
|
||
|
scrape_interval: 30s
|
||
|
|
||
|
- job_name: 'minio'
|
||
|
static_configs:
|
||
|
- targets: ['minio:9000']
|
||
|
metrics_path: '/minio/v2/metrics/cluster'
|
||
|
scrape_interval: 30s
|