39 lines
875 B
YAML
39 lines
875 B
YAML
global:
|
|
scrape_interval: 15s
|
|
evaluation_interval: 15s
|
|
scrape_timeout: 10s
|
|
|
|
scrape_configs:
|
|
- job_name: 'prometheus'
|
|
static_configs:
|
|
- targets: ['localhost:9090']
|
|
|
|
- job_name: 'eveai_app'
|
|
static_configs:
|
|
- targets: ['eveai_app:8000']
|
|
scrape_interval: 10s
|
|
|
|
- job_name: 'eveai_workers'
|
|
static_configs:
|
|
- targets: ['eveai_workers:8000']
|
|
scrape_interval: 10s
|
|
|
|
- job_name: 'eveai_chat_workers'
|
|
static_configs:
|
|
- targets: ['eveai_chat_workers:8000']
|
|
scrape_interval: 10s
|
|
|
|
- job_name: 'eveai_api'
|
|
static_configs:
|
|
- targets: ['eveai_api:8000']
|
|
scrape_interval: 10s
|
|
|
|
- job_name: 'eveai_entitlements'
|
|
static_configs:
|
|
- targets: ['eveai_entitlements:8000']
|
|
scrape_interval: 10s
|
|
|
|
- job_name: 'pushgateway'
|
|
honor_labels: true
|
|
static_configs:
|
|
- targets: [ 'pushgateway:9091' ] |