- Alerts are only supported for Slack Webhook URLs. Get your webhook urls from{" "}
+ Alerts are sent to any Slack-compatible incoming webhook URL (Slack, Rocket.Chat, Mattermost, etc.). Get
+ Slack webhook urls from{" "}
here
@@ -532,7 +533,7 @@ const Settings: React.FC = ({ accessToken, userRole, userID,
- Slack Webhook URL
+ Webhook URL (Slack-compatible)
diff --git a/ui/litellm-dashboard/src/lib/http/schema.d.ts b/ui/litellm-dashboard/src/lib/http/schema.d.ts
index 137c67e837c..8a564a07489 100644
--- a/ui/litellm-dashboard/src/lib/http/schema.d.ts
+++ b/ui/litellm-dashboard/src/lib/http/schema.d.ts
@@ -25182,7 +25182,7 @@ export interface components {
alert_types?: components["schemas"]["AlertType"][] | null;
/**
* Alerting
- * @description List of alerting integrations. Today, just slack - `alerting: ['slack']`
+ * @description List of alerting integrations - e.g. `alerting: ['slack', 'webhook', 'email']`. 'slack' posts Slack-format messages to any Slack-compatible webhook (Slack, Rocket.Chat, Mattermost); 'webhook' posts structured JSON budget alerts to WEBHOOK_URL
*/
alerting?: unknown[] | null;
/**