Slack, email, and webhooks
Route alerts to email, Slack incoming webhooks, or a generic HTTPS webhook.
Notification channels are attached to alert rules. Configure them under Notifications or in the alert editor.
Provide the destination address. Sensobit sends a message when the rule fires, is acknowledged, or resolves. Enable Email notifications in Preferences if you also want account-level mail.
Slack
Create an Incoming Webhook in Slack and paste the URL:
https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXOptionally set a channel override in the channel config. Sensobit POSTs a short payload with rule name, severity, namespace, and a console link.
Generic webhook
{
"event": "alert.firing",
"severity": "critical",
"rule": "cpu-high",
"namespace": "production",
"host": "web-01",
"metric": "system.cpu.usage_percent",
"value": 93.1,
"message": "CPU above 90% for 5m"
}POST target is your url. An optional secret is sent as a header so you can verify the source.
Preferences
Each user can toggle email, Slack, and webhook delivery in Preferences. Disabling a personal toggle does not delete the workspace channel; it stops that user's copies.
Test a channel from the notifications page before attaching it to a production rule.