Configure Quality Alerts
Stay informed about data quality issues with alerts. DataBridge monitors your datasets and notifies you when quality checks fail or data profiles show unexpected changes.
Alert Channels
DataBridge supports four notification channel types:
Email
Setup:
- Go to Settings → Alert Channels and click Add Channel
- Select Email
- Enter a name (e.g., "data@yourcompany.com")
- Provide comma-separated recipient email addresses
- Click Save Channel
Slack
Setup:
- Create an Incoming Webhook in your Slack workspace
- Go to Settings → Alert Channels and click Add Channel
- Select Slack
- Enter a name and paste the webhook URL
- Click Save Channel
Telegram
Setup:
- Go to Settings → Alert Channels and select Telegram
- Click Generate Code - a registration code appears (valid for 10 minutes)
- Open the DataBridge bot in Telegram (the link is shown on screen)
- Send the code to the bot using
/connect <code>or/start <code> - The bot confirms registration and the channel appears in your settings
The Telegram bot can deliver alerts to private chats or group chats (add the bot to the group first, then send the code there).
Webhook
Sends a JSON POST request to any HTTP endpoint.
Setup:
- Go to Settings → Alert Channels and click Add Channel
- Select Webhook
- Enter a name, the endpoint URL and an optional signing secret
- Click Save Channel
Payload format:
{
"queued_at": "2026-03-18T12:00:00Z",
"title": "Check failed: not_null on users.email",
"body": "Column email has 142 null values (2.3%)",
"metadata": {
"dataset": "public.users",
"check_type": "not_null",
"destination": "PostgreSQL Production"
}
}
Attaching Alerts to Datasets
Alert channels are attached to individual datasets:
- Go to Datasets and open a dataset
- Switch to the Alerts tab
- Configure alert thresholds
- Select which alert channels should receive notifications for this dataset
- Save
When a quality check on that dataset fails, all attached channels receive the alert.