Monitor

Dashboards and alerts for production.


Default Dashboard

dashboard.kalibr.systems shows:

  • Total cost (24h)
  • Cost by provider (OpenAI, Anthropic, Google)
  • Cost by workflow
  • Cost by customer
  • Error rate
  • Latency (p50, p95, p99)

Filtering

Filter any view by:

  • workflow_id
  • tenant_id
  • provider
  • model
  • Time range

Setting Up Alerts

  1. Go to Monitor → Alerts
  2. Click "New Alert"
  3. Configure threshold and notification

Example alerts:

AlertConditionAction
Daily cost> $500Email
Error rate> 5%Slack
Latency p95> 10sPagerDuty

API Access

# Summary metrics
curl -H "X-API-Key: $KEY" \
  "https://api.kalibr.systems/api/analytics/summary?hours=24"

# Cost breakdown
curl -H "X-API-Key: $KEY" \
  "https://api.kalibr.systems/api/analytics/cost?group_by=workflow"

Next Steps