Change the defaults for timeout_check_critical (10 minutes) and timeout_check_warn (1 hour)

This commit is contained in:
2025-06-12 17:25:59 -04:00
parent 3dbc105ae3
commit 4e168c85a5

View File

@ -18,8 +18,8 @@ def timeout_expired(check: float, timeout: int) -> bool:
return (time.time() - check) > timeout return (time.time() - check) > timeout
class Tempature: class Tempature:
timeout_check_critical: int = 120 # Seconds timeout_check_critical: int = 600 # Seconds
timeout_check_warn: int = 300 # Seconds timeout_check_warn: int = 3600 # Seconds
critical_message: str = "🔥 CPU is at a very high tempature." critical_message: str = "🔥 CPU is at a very high tempature."
warning_message: str = "🌡️ CPU is at a high tempature." warning_message: str = "🌡️ CPU is at a high tempature."
thermal_critical_c: int = 80 thermal_critical_c: int = 80