mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-27 11:43:54 +00:00
Before: ```shell $ curl -sSL http://0.0.0.0:4000/health/readiness | jq '.success_callbacks' [ "langfuse", "<function _PROXY_track_cost_callback at 0x12fc14b80>", "<bound method SlackAlerting.response_taking_too_long_callback of <litellm.integrations.slack_alerting.SlackAlerting object at 0x12cedb740>>", "<litellm.proxy.hooks.parallel_request_limiter._PROXY_MaxParallelRequestsHandler object at 0x12cedb8f0>", "<litellm.proxy.hooks.max_budget_limiter._PROXY_MaxBudgetLimiter object at 0x12cedb830>", "<litellm.proxy.hooks.cache_control_check._PROXY_CacheControlCheck object at 0x12ca101d0>", "<litellm._service_logger.ServiceLogging object at 0x13a6d8c50>" ] ``` After: ```shell $ curl -sSL http://0.0.0.0:4000/health/readiness | jq '.success_callbacks' [ "langfuse", "_PROXY_track_cost_callback", "response_taking_too_long_callback", "_PROXY_MaxParallelRequestsHandler", "_PROXY_MaxBudgetLimiter", "_PROXY_CacheControlCheck", "ServiceLogging" ] ``` |
||
---|---|---|
.. | ||
_health_endpoints.py |