Files
eveAI/docker/prometheus/prometheus.yml
Josako b6ee7182de - Adding Prometheus and grafana services in development
- 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)
2025-03-24 16:39:22 +01:00

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