From: Michael Tremer Date: Thu, 4 Dec 2025 17:00:52 +0000 (+0000) Subject: graphs: processor: Don't zoom out X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a27ad221d26164a63a037d45edbe955080c5a1b;p=telemetry.git graphs: processor: Don't zoom out This changes that the graph will always scale up to 100%, but we will see more detail. Signed-off-by: Michael Tremer --- diff --git a/src/daemon/graphs/processor.c b/src/daemon/graphs/processor.c index adc599a..7546b7b 100644 --- a/src/daemon/graphs/processor.c +++ b/src/daemon/graphs/processor.c @@ -18,6 +18,8 @@ # # #############################################################################*/ +#include + #include "../string.h" #include "graph.h" #include "processor.h" @@ -130,5 +132,5 @@ const td_graph_impl processor_graph = { // Limits .lower_limit = 0, - .upper_limit = 100, + .upper_limit = LONG_MAX, };