Updated hdd temp thresholds

This commit is contained in:
2025-09-03 21:06:12 -04:00
parent 0ab728da47
commit 0326c5142e

View File

@ -632,7 +632,7 @@ class SystemHealthMonitor:
if drive_type == 'SSD': if drive_type == 'SSD':
temp_thresholds = {'warning': 70, 'critical': 85, 'optimal_max': 65} temp_thresholds = {'warning': 70, 'critical': 85, 'optimal_max': 65}
else: # HDD else: # HDD
temp_thresholds = {'warning': 60, 'critical': 70, 'optimal_max': 55} temp_thresholds = {'warning': 65, 'critical': 75, 'optimal_max': 60}
if temperature >= temp_thresholds['critical']: if temperature >= temp_thresholds['critical']:
issues.append(f"CRITICAL: Drive temperature {temperature}°C exceeds safe operating limit for {drive_type}") issues.append(f"CRITICAL: Drive temperature {temperature}°C exceeds safe operating limit for {drive_type}")