From: Michael Tremer Date: Fri, 27 Mar 2026 17:22:50 +0000 (+0000) Subject: graphs: processor temperature: Don't start the graph at zero X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a7d8002690edf640a158f9ed77ec55fc9f9f16c1;p=telemetry.git graphs: processor temperature: Don't start the graph at zero Theoretically, sub-zero temperatures are possible Signed-off-by: Michael Tremer --- diff --git a/src/daemon/graphs/processor-temperature.c b/src/daemon/graphs/processor-temperature.c index d749d55..9ddc244 100644 --- a/src/daemon/graphs/processor-temperature.c +++ b/src/daemon/graphs/processor-temperature.c @@ -95,6 +95,6 @@ const td_graph_impl processor_temperature_graph = { .vlabel = td_graph_vlabel_temp, // Limits - .lower_limit = 0, + .lower_limit = -LONG_MAX, .upper_limit = LONG_MAX, };