From c19cfbd00ed731e4d5c248c2596e585e071d5a03 Mon Sep 17 00:00:00 2001 From: Koshy John Date: Mon, 4 Nov 2024 08:58:33 -0800 Subject: [PATCH] Matching 20% increase in throttling limit at VM Agent --- src/core/src/bootstrap/Constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/src/bootstrap/Constants.py b/src/core/src/bootstrap/Constants.py index c016c027..99d58939 100644 --- a/src/core/src/bootstrap/Constants.py +++ b/src/core/src/bootstrap/Constants.py @@ -315,8 +315,8 @@ class PatchOperationErrorCodes(EnumBackport): TELEMETRY_DIR_SIZE_LIMIT_IN_CHARS = 41943040 TELEMETRY_BUFFER_FOR_DROPPED_COUNT_MSG_IN_CHARS = 25 # buffer for the chars dropped text added at the end of the truncated telemetry message TELEMETRY_EVENT_COUNTER_MSG_SIZE_LIMIT_IN_CHARS = 15 # buffer for telemetry event counter text added at the end of every message sent to telemetry - TELEMETRY_MAX_EVENT_COUNT_THROTTLE = 60 - TELEMETRY_MAX_TIME_IN_SECONDS_FOR_EVENT_COUNT_THROTTLE = 60 + TELEMETRY_MAX_EVENT_COUNT_THROTTLE = 360 + TELEMETRY_MAX_TIME_IN_SECONDS_FOR_EVENT_COUNT_THROTTLE = 300 # Telemetry Event Level class TelemetryEventLevel(EnumBackport):