From fb1a9f67e1789d960c338ddaa0c45b03210b6f15 Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Fri, 25 Jul 2025 17:36:21 -0400 Subject: [PATCH] Updated CPU threshold --- hwmonDaemon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hwmonDaemon.py b/hwmonDaemon.py index 6439b8a..fe2afc5 100644 --- a/hwmonDaemon.py +++ b/hwmonDaemon.py @@ -43,7 +43,7 @@ class SystemHealthMonitor: 'DISK_WARNING': 80, 'LXC_CRITICAL': 90, 'LXC_WARNING': 80, - 'CPU_WARNING': 80, + 'CPU_WARNING': 95, 'TEMPERATURE_WARNING': 65 }, 'NETWORKS': { @@ -903,7 +903,7 @@ class SystemHealthMonitor: # Check for CPU-related issues cpu_health = health_report.get('cpu_health', {}) if cpu_health and cpu_health.get('cpu_usage_percent', 0) > self.CONFIG['THRESHOLDS']['CPU_WARNING']: - issues.append("CPU usage is above threshold") + issues.append("CPU usage is above threshold of 95%") # Check for network-related issues network_health = health_report.get('network_health', {})