diff --git a/litellm/proxy/_types.py b/litellm/proxy/_types.py index d0c8eac4edb..25a26700203 100644 --- a/litellm/proxy/_types.py +++ b/litellm/proxy/_types.py @@ -697,6 +697,21 @@ class ConfigGeneralSettings(LiteLLMBase): None, description="List of alerting integrations. Today, just slack - `alerting: ['slack']`", ) + alert_types: Optional[ + List[ + Literal[ + "llm_exceptions", + "llm_too_slow", + "llm_requests_hanging", + "budget_alerts", + "db_exceptions", + ] + ] + ] = Field( + None, + description="List of alerting types. By default it is all alerts", + ) + alerting_threshold: Optional[int] = Field( None, description="sends alerts if requests hang for 5min+",