From a702bed037f7232206cf18c90d6ffcbd91951e04 Mon Sep 17 00:00:00 2001 From: Trey Blancher Date: Sat, 12 Aug 2023 13:01:11 -0400 Subject: [PATCH] Increased I/O threshold to 1000ms --- monitor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor.c b/monitor.c index e7e1e24..2ee0117 100644 --- a/monitor.c +++ b/monitor.c @@ -10,7 +10,7 @@ #define IO_TRACKING_WINDOW_SECS 1 #define MEM_TRACKING_WINDOW_SECS 1 #define CPU_TRIGGER_THRESHOLD_MS 100 -#define IO_TRIGGER_THRESHOLD_MS 100 +#define IO_TRIGGER_THRESHOLD_MS 1000 #define MEM_TRIGGER_THRESHOLD_MS 100 #define CPU_PRESSURE_FILE "/proc/pressure/cpu" #define IO_PRESSURE_FILE "/proc/pressure/io"