
Use Cases
- Monitor call volume: Get notified when call volume spikes or drops unexpectedly
- Track system health: Alert when API errors or function failures increase
- Monitor costs: Set budget alerts when call costs exceed thresholds
- Detect quality issues: Alert on declining call success rates or negative sentiment
Available Metrics
You can create alerts for the following metrics:| Metric | Description |
|---|---|
| Call Count | Total number of calls within the evaluation window |
| Concurrency Used | Peak number of concurrent calls |
| Call Success Rate | Percentage of successful calls (0-100%) |
| Negative Sentiment Rate | Percentage of calls with negative sentiment (0-100%) |
| Custom Function Latency | Average latency of custom function calls (milliseconds) |
| Custom Function Failure Count | Number of failed custom function calls |
| Transfer Call Failure Count | Number of failed call transfers |
| Total Call Cost | Total cost of calls (USD) |
| API Error Count | Number of API errors (can be filtered by error code) |
Creating an Alert Rule
Navigate to the Alerting tab in your dashboard to create alert rules.
- Name: A descriptive name for the alert
- Metric: The metric to monitor
- Threshold type: Absolute or relative comparison
- Threshold value: The value to compare against
- Comparator: Greater than, less than, etc.
- Evaluation window: Time period for metric aggregation
- Frequency: How often to evaluate the rule
- Notification channels: Email addresses and/or webhook URLs
Threshold Types
Absolute Threshold
Compares the current metric value directly against your threshold. Example: Alert whenCall Count > 100 in the last hour.
Relative Threshold
Compares the percentage change from the previous period against your threshold. Useful for detecting sudden spikes or drops. Example: Alert whenCall Count increases by more than 50% compared to the previous hour.
The formula used: ((currentValue - previousValue) / previousValue) * 100
If the previous period had zero calls but the current period has calls, this is treated as an infinite increase and will trigger alerts with
> or >= comparators.Evaluation Windows and Frequencies
The evaluation window determines how far back to look when calculating the metric. The frequency determines how often the rule is checked.| Window | Supported Frequencies |
|---|---|
| 1 minute | 1 minute |
| 5 minutes | 1 minute, 5 minutes |
| 30 minutes | 5 minutes, 30 minutes |
| 1 hour | 5 minutes, 30 minutes, 1 hour |
| 12 hours | 30 minutes, 1 hour, 12 hours |
| 24 hours | 1 hour, 12 hours, 24 hours |
| 3 days | 12 hours, 24 hours |
| 7 days | 24 hours |
Filters
You can optionally filter the data included in metric calculations:Agent Filter
Filter by specific agents and optionally by agent versions.Disconnection Reason Filter
Filter calls by their disconnection reason (e.g.,user_hangup, agent_hangup).
Error Code Filter
For the API Error Count metric, filter by specific HTTP status codes (e.g.,429, 402).
Notification Channels
Email Notifications
Add email addresses to receive alert notifications. When an alert triggers, all configured recipients receive an email containing:- Alert rule name
- Metric type
- Current value
- Threshold that was breached
- Timestamp
Webhook Notifications
Configure webhook URLs to receive programmatic notifications. This enables integration with external monitoring systems, Slack, PagerDuty, or custom workflows.Webhook Payload
Webhooks send aPOST request with the following payload structure:
Webhook Signature Verification
All webhook requests include anX-Retell-Signature header containing an HMAC-SHA256 signature. Use your organization’s webhook key to verify the payload authenticity.
Alert Incidents
When an alert rule’s condition is met, an alert incident is created. Incidents track:- When the alert was triggered
- The metric value that triggered it
- When the alert was resolved (if applicable)

Incident Lifecycle
- Triggered: When the metric breaches the threshold, a new incident is created and notifications are sent
- Active: The incident remains active while the condition persists
- Resolved: When the metric no longer breaches the threshold, the incident is marked as resolved
Only one incident can be active per alert rule at a time. Notifications are sent only when a new incident is created, not on each evaluation.
Limits
- Maximum 10 alert rules per organization
- Webhook timeout: 10 seconds
FAQ
How often are alerts evaluated?
How often are alerts evaluated?
Alerts are evaluated based on their configured frequency (1 minute to 24 hours). The system checks all due alert rules every minute and processes them according to their individual schedules.
Will I receive repeated notifications for the same issue?
Will I receive repeated notifications for the same issue?
No. Notifications are sent only once when a new incident is created. You won’t receive repeated notifications while the alert condition persists. A new notification is sent only if the alert resolves and then triggers again.
What happens when an alert resolves?
What happens when an alert resolves?
When the metric no longer meets the threshold condition, the active incident is marked as resolved with a timestamp. Currently, resolution notifications are not sent automatically.
Can I filter alerts by multiple agents?
Can I filter alerts by multiple agents?
Yes. You can select multiple agents in the filter configuration. The metric will be calculated across all selected agents.
How do relative thresholds handle zero values?
How do relative thresholds handle zero values?
If the previous period had zero activity but the current period has activity, this is treated as an infinite increase. Alerts with
> or >= comparators will trigger in this case.