From 5adbba61ec87da03b03864b6a9ceba65ab26eb96 Mon Sep 17 00:00:00 2001 From: mbecker20 Date: Wed, 11 Jan 2023 08:51:18 +0000 Subject: [PATCH] increase temp threshold to 85% of critical --- core/src/monitoring.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/monitoring.rs b/core/src/monitoring.rs index c7500380b..55b00e516 100644 --- a/core/src/monitoring.rs +++ b/core/src/monitoring.rs @@ -273,7 +273,7 @@ impl State { .iter() .map(|c| { if let Some(critical) = c.critical { - if c.temp / critical > 0.75 { + if c.temp / critical > 0.85 { format!( "{}: *{:.1}°* (*{:.1}%* to critical) 🌡️", c.label,