mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 22:43:42 +00:00
check_rabbitmq_queue: Adjust threshholds for some queues.
This commit is contained in:
@@ -47,8 +47,9 @@ MAX_SECONDS_TO_CLEAR_FOR_BURSTS = defaultdict(
|
|||||||
) # type: DefaultDict[str, int]
|
) # type: DefaultDict[str, int]
|
||||||
MAX_SECONDS_TO_CLEAR_NORMAL = defaultdict(
|
MAX_SECONDS_TO_CLEAR_NORMAL = defaultdict(
|
||||||
lambda: 30,
|
lambda: 30,
|
||||||
digest_emails=120,
|
digest_emails=1200,
|
||||||
slow_queries=120,
|
slow_queries=120,
|
||||||
|
missedmessage_mobile_notifications=120,
|
||||||
) # type: DefaultDict[str, int]
|
) # type: DefaultDict[str, int]
|
||||||
CRITICAL_SECONDS_TO_CLEAR_FOR_BURSTS = defaultdict(
|
CRITICAL_SECONDS_TO_CLEAR_FOR_BURSTS = defaultdict(
|
||||||
lambda: 240,
|
lambda: 240,
|
||||||
@@ -57,6 +58,7 @@ CRITICAL_SECONDS_TO_CLEAR_FOR_BURSTS = defaultdict(
|
|||||||
) # type: DefaultDict[str, int]
|
) # type: DefaultDict[str, int]
|
||||||
CRITICAL_SECONDS_TO_CLEAR_NORMAL = defaultdict(
|
CRITICAL_SECONDS_TO_CLEAR_NORMAL = defaultdict(
|
||||||
lambda: 60,
|
lambda: 60,
|
||||||
|
missedmessage_mobile_notifications=180,
|
||||||
digest_emails=600,
|
digest_emails=600,
|
||||||
slow_queries=600,
|
slow_queries=600,
|
||||||
) # type: DefaultDict[str, int]
|
) # type: DefaultDict[str, int]
|
||||||
|
|||||||
Reference in New Issue
Block a user