statistics: clarify CPU/processor graph by removing "idle" from it
Clarify the CPU time consumption graph by removing the "idle" data from it. Especially with light traffic, removing "idle" enables the graph to scale better and to properly show the CPU load variations. If "idle" data needs to be seen, it might be added as a second graph below. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
This commit is contained in:
parent
0141494935
commit
5ce647746e
1 changed files with 2 additions and 1 deletions
|
@ -8,11 +8,12 @@ function rrdargs( graph, plugin, plugin_instance, dtype )
|
|||
return {
|
||||
title = "%H: Processor usage on core #%pi",
|
||||
y_min = "0",
|
||||
alt_autoscale_max = true,
|
||||
vlabel = "Percent",
|
||||
number_format = "%5.1lf%%",
|
||||
data = {
|
||||
instances = {
|
||||
cpu = { "idle", "user", "nice", "system", "softirq", "interrupt" }
|
||||
cpu = { "user", "nice", "system", "softirq", "interrupt" }
|
||||
},
|
||||
|
||||
options = {
|
||||
|
|
Loading…
Reference in a new issue