diff options
Diffstat (limited to 'applications/luci-app-statistics/htdocs')
-rw-r--r-- | applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpu.js | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpu.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpu.js index 7d0dc9a15a..796b2cc8d4 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpu.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpu.js @@ -28,13 +28,13 @@ return baseclass.extend({ instances: { cpu: [ ...(show_idle ? ["idle"] : []), - "interrupt", "nice", - "softirq", - "steal", - "system", "user", - "wait" + "wait", + "system", + "softirq", + "interrupt", + "steal" ] }, options: { @@ -68,7 +68,7 @@ return baseclass.extend({ }, cpu_wait: { color: "ffb000", - title: "Wait" + title: "Wait I/O" } } } @@ -84,13 +84,13 @@ return baseclass.extend({ instances: { percent: [ ...(show_idle ? ["idle"] : []), - "interrupt", "nice", - "softirq", - "steal", - "system", "user", - "wait" + "wait", + "system", + "softirq", + "interrupt", + "steal" ] }, options: { @@ -124,7 +124,7 @@ return baseclass.extend({ }, percent_wait: { color: "ffb000", - title: "Wait" + title: "Wait I/O" } } } |