diff --git a/docs/my-website/docs/proxy/alerting.md b/docs/my-website/docs/proxy/alerting.md index b8e5ebe207..7841ace580 100644 --- a/docs/my-website/docs/proxy/alerting.md +++ b/docs/my-website/docs/proxy/alerting.md @@ -126,6 +126,7 @@ AlertType = Literal[ "db_exceptions", "daily_reports", "spend_reports", + "fallback_reports", "cooldown_deployment", "new_model_added", "outage_alerts", diff --git a/litellm/proxy/_types.py b/litellm/proxy/_types.py index ec788471a4..5e0de6fb09 100644 --- a/litellm/proxy/_types.py +++ b/litellm/proxy/_types.py @@ -115,6 +115,7 @@ AlertType = Literal[ "new_model_added", "outage_alerts", "region_outage_alerts", + "fallback_reports", ] diff --git a/litellm/proxy/utils.py b/litellm/proxy/utils.py index 212f8a9c87..d1d17d0ef5 100644 --- a/litellm/proxy/utils.py +++ b/litellm/proxy/utils.py @@ -222,6 +222,7 @@ class ProxyLogging: "db_exceptions", "daily_reports", "spend_reports", + "fallback_reports", "cooldown_deployment", "new_model_added", "outage_alerts",