delimiter
DASHBOARD / ALERTS

Alerts

Get notified before your app goes dark — whether from rate limit exhaustion or credit depletion.

Thresholds#

Configure in the dashboard settings:

  • Warning threshold: default 70%
  • Critical threshold: default 90%

Alerts fire when any provider's usage crosses a threshold. This applies to both rate limits (requests, tokens) and credit balances.

Notification channels#

  • Email — enabled by default, uses your account email
  • Slack — provide a webhook URL in settings
  • Webhook — any HTTP endpoint, receives a JSON payload

Alert payload#

Each alert includes:

{
  "provider": "openai",
  "app": "my-production-app",
  "metric": "requests",
  "threshold": 90,
  "current": 9102,
  "limit": 10000,
  "percentage": 91,
  "timestamp": "2025-01-15T14:23:01.456Z"
}

Credit depletion alerts#

Credit balance alerts work the same way. When a provider's credit usage crosses the warning or critical threshold, an alert fires with "metric": "credits". This covers both SDK-detected credit data (from response headers) and connected provider billing data.

Alert log#

All alerts are logged in the dashboard. View historical alerts with timestamp, provider, metric, and values.