27 lines
594 B
YAML
27 lines
594 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: 'veza-backend'
|
|
static_configs:
|
|
- targets: ['host.docker.internal:8080']
|
|
metrics_path: '/metrics'
|
|
|
|
- job_name: 'veza-chat'
|
|
static_configs:
|
|
- targets: ['host.docker.internal:3001']
|
|
metrics_path: '/metrics'
|
|
|
|
- job_name: 'veza-stream'
|
|
static_configs:
|
|
- targets: ['host.docker.internal:3002']
|
|
metrics_path: '/metrics'
|