luci-app-statistics: fix whitespaces in rrdtool definitions
[project/luci.git] / applications / luci-app-statistics / luasrc / statistics / rrdtool / definitions / processes.lua
index 323c3c2308ac02e8f41a269e4def25649493f724..010ac1cd2ed324f150c361624d724fb2ad5763c9 100644 (file)
@@ -5,8 +5,8 @@ module("luci.statistics.rrdtool.definitions.processes", package.seeall)
 
 function rrdargs( graph, plugin, plugin_instance, dtype )
 
-       return {
-               {
+       if  plugin_instance == "" then
+               return {
                        title = "%H: Processes",
                        vlabel = "Processes/s",
                        data = {
@@ -26,8 +26,9 @@ function rrdargs( graph, plugin, plugin_instance, dtype )
                                        ps_state_zombies  = { color = "ff0000", title = "Zombies" }
                                }
                        }
-               },
-
+               }
+       else
+               return {
                {
                        title = "%H: CPU time used by %pi",
                        vlabel = "Jiffies",
@@ -112,4 +113,5 @@ function rrdargs( graph, plugin, plugin_instance, dtype )
                        }
                }
        }
+       end
 end