- Adding Prometheus metrics to the business events - Ensure asynchronous behaviour of crewai specialists. - Adapt Business events to working in mixed synchronous / asynchronous contexts - Extend business events with specialist information - Started adding a grafana dashboard (TBC)
35 lines
764 B
YAML
35 lines
764 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
|