diff options
author | Florian Eckert <fe@dev.tdt.de> | 2019-01-21 14:05:57 +0100 |
---|---|---|
committer | Florian Eckert <fe@dev.tdt.de> | 2019-01-21 14:42:01 +0100 |
commit | d78f79a404db4610a9a92ca44e9258a02ee4a53c (patch) | |
tree | 715494a3139fcd84c78d4e28dcbfb3fa15d60167 /applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua | |
parent | a86c068870dea59844a282ca43885ef4fcbfa07f (diff) |
luci-app-statistics: fix whitespaces in rrdtool definitions
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
Diffstat (limited to 'applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua')
-rw-r--r-- | applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua index 62d0545973..010ac1cd2e 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua @@ -5,8 +5,8 @@ module("luci.statistics.rrdtool.definitions.processes", package.seeall) function rrdargs( graph, plugin, plugin_instance, dtype ) - if plugin_instance == "" then - return { + if plugin_instance == "" then + return { title = "%H: Processes", vlabel = "Processes/s", data = { @@ -26,9 +26,9 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) ps_state_zombies = { color = "ff0000", title = "Zombies" } } } - } - else - return { + } + else + return { { title = "%H: CPU time used by %pi", vlabel = "Jiffies", @@ -113,5 +113,5 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) } } } - end + end end |