From 7811582d9fdd984b28e0061b6d76b723bbf4c911 Mon Sep 17 00:00:00 2001 From: Viyurz Date: Thu, 1 Aug 2024 10:33:09 +0200 Subject: [PATCH] [monitoring] Update thresholds --- monitoring.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/monitoring.py b/monitoring.py index af7a70e..014381a 100755 --- a/monitoring.py +++ b/monitoring.py @@ -9,12 +9,12 @@ import time # CPU usage threshold in percent -CPU_THRESHOLD = 30 +CPU_THRESHOLD = 35 # Memory usage threshold in GB -MEMORY_THRESHOLD = 3 +MEMORY_THRESHOLD = 2.75 # Disk usage threshold in GB -DISK_LOCAL_THRESHOLD = 30 -DISK_SMB_THRESHOLD = 200 +DISK_LOCAL_THRESHOLD = 25 +DISK_SMB_THRESHOLD = 120 # Time in seconds between each check MONITORING_INTERVAL = 30