mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 03:04:13 +00:00
(fix) alerting debug statements
This commit is contained in:
parent
b8f917624f
commit
1c9b02ad99
1 changed files with 3 additions and 2 deletions
|
@ -200,11 +200,12 @@ class ProxyLogging:
|
||||||
# percent of max_budget left to spend
|
# percent of max_budget left to spend
|
||||||
percent_left = (user_max_budget - user_current_spend) / user_max_budget
|
percent_left = (user_max_budget - user_current_spend) / user_max_budget
|
||||||
verbose_proxy_logger.debug(
|
verbose_proxy_logger.debug(
|
||||||
f"Bduget Alerts: Percent left: {percent_left} for {user_info}"
|
f"Budget Alerts: Percent left: {percent_left} for {user_info}"
|
||||||
)
|
)
|
||||||
|
|
||||||
# check if crossed budget
|
# check if crossed budget
|
||||||
if user_current_spend >= user_max_budget:
|
if user_current_spend >= user_max_budget:
|
||||||
|
verbose_proxy_logger.debug(f"Budget Crossed for {user_info}")
|
||||||
message = "Budget Crossed for" + user_info
|
message = "Budget Crossed for" + user_info
|
||||||
await self.alerting_handler(
|
await self.alerting_handler(
|
||||||
message=message,
|
message=message,
|
||||||
|
@ -230,7 +231,7 @@ class ProxyLogging:
|
||||||
)
|
)
|
||||||
return
|
return
|
||||||
|
|
||||||
pass
|
return
|
||||||
|
|
||||||
async def alerting_handler(
|
async def alerting_handler(
|
||||||
self, message: str, level: Literal["Low", "Medium", "High"]
|
self, message: str, level: Literal["Low", "Medium", "High"]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue