* [PATCH] graphs: Fix rendering CPU graphs after number of cores decreased
@ 2020-09-18 7:44 Michael Tremer
0 siblings, 0 replies; only message in thread
From: Michael Tremer @ 2020-09-18 7:44 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1052 bytes --]
Fixes: #12193 - cpu graphs cannot created if smt is disabled
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
config/cfgroot/graphs.pl | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/config/cfgroot/graphs.pl b/config/cfgroot/graphs.pl
index a7b82fed3..f6e6e25a3 100644
--- a/config/cfgroot/graphs.pl
+++ b/config/cfgroot/graphs.pl
@@ -172,7 +172,7 @@ sub updatecpugraph {
}
for(my $i = 2; $i < $cpucount; $i++) {
- $addstring .= "+,";
+ $addstring .= "ADDNAN,";
}
if ( $cpucount > 1){
@@ -190,7 +190,7 @@ sub updatecpugraph {
push(@command,$nice,$interrupt,$steal,$user,$system,$idle,$iowait,$irq);
}
- push(@command,"CDEF:total=user,system,idle,iowait,irq,nice,interrupt,steal,+,+,+,+,+,+,+"
+ push(@command,"CDEF:total=user,system,idle,iowait,irq,nice,interrupt,steal,ADDNAN,ADDNAN,ADDNAN,ADDNAN,ADDNAN,ADDNAN,ADDNAN"
,"CDEF:userpct=100,user,total,/,*"
,"CDEF:nicepct=100,nice,total,/,*"
,"CDEF:interruptpct=100,interrupt,total,/,*"
--
2.20.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2020-09-18 7:44 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-18 7:44 [PATCH] graphs: Fix rendering CPU graphs after number of cores decreased Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox