From faab06506e42f72fe8f37b3b41fbd658b053a03b Mon Sep 17 00:00:00 2001 From: Abhinav Date: Wed, 11 Jan 2023 19:59:16 +0530 Subject: [PATCH] update main HIGH_MEMORY_USAGE_THRESHOLD_IN_KILOBYTES --- src/utils/processStats.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/processStats.ts b/src/utils/processStats.ts index 18c16590b..f984eddd4 100644 --- a/src/utils/processStats.ts +++ b/src/utils/processStats.ts @@ -7,7 +7,7 @@ const SPIKE_DETECTION_INTERVAL_IN_MICROSECONDS = 1 * 1000; // 1 seconds const MEMORY_DIFF_IN_KILOBYTES_CONSIDERED_AS_SPIKE = 10 * 1024; // 10 MB -const HIGH_MEMORY_USAGE_THRESHOLD_IN_KILOBYTES = 200 * 1024; // 200 MB +const HIGH_MEMORY_USAGE_THRESHOLD_IN_KILOBYTES = 100 * 1024; // 100 MB const HEAP_SIZE_DIFF_IN_KILOBYTES_CONSIDERED_AS_SPIKE = 200 * 1024; // 200 MB