applications/luci-statistics: rework handling of index and detail graphs
[project/luci.git] / applications / luci-statistics / luasrc / statistics / rrdtool / definitions / processes.lua
index dacba13120168a8a743d159a6e4f68c1fccc5799..6f83c8e283bef3cc31452324abe9a50ea796f3f0 100644 (file)
@@ -15,10 +15,12 @@ $Id$
 
 module("luci.statistics.rrdtool.definitions.processes", package.seeall)
 
-function rrdargs( graph, plugin, plugin_instance )
+function rrdargs( graph, plugin, plugin_instance, dtype )
 
-       if plugin_instance == "" then
-               return {
+       return {
+               {
+                       title = "%H: Processes",
+                       vlabel = "Processes/s",
                        data = {
                                instances = {
                                        ps_state = {
@@ -35,67 +37,74 @@ function rrdargs( graph, plugin, plugin_instance )
                                        ps_state_zombies  = { color = "ff0000" }
                                }
                        }
-               }
-       else
-               return {
+               },
 
-                       {
-                               data = {
-                                       sources = {
-                                               ps_cputime = { "syst", "user" }
-                                       },
+               {
+                       title = "%H: CPU time used by %pi",
+                       vlabel = "Jiffies",
+                       data = {
+                               sources = {
+                                       ps_cputime = { "syst", "user" }
+                               },
 
-                                       options = {
-                                               ps_cputime__user = {
-                                                       color   = "0000ff",
-                                                       overlay = true
-                                               },
+                               options = {
+                                       ps_cputime__user = {
+                                               color   = "0000ff",
+                                               overlay = true
+                                       },
 
-                                               ps_cputime__syst = {
-                                                       color   = "ff0000",
-                                                       overlay = true
-                                               }
+                                       ps_cputime__syst = {
+                                               color   = "ff0000",
+                                               overlay = true
                                        }
                                }
-                       },
+                       }
+               },
 
-                       {
-                               data = {
-                                       sources = {
-                                               ps_count = { "threads", "processes" }
-                                       },
+               {
+                       title = "%H: Threads and processes belonging to %pi",
+                       vlabel = "Count",
+                       detail = true,
+                       data = {
+                               sources = {
+                                       ps_count = { "threads", "processes" }
+                               },
 
-                                       options = {
-                                               ps_count__threads   = { color = "00ff00" },
-                                               ps_count__processes = { color = "0000bb" }
-                                       }
+                               options = {
+                                       ps_count__threads   = { color = "00ff00" },
+                                       ps_count__processes = { color = "0000bb" }
                                }
-                       },
+                       }
+               },
 
-                       {
-                               data = {
-                                       sources = {
-                                               ps_pagefaults = { "minflt", "majflt" }
-                                       },
+               {
+                       title = "%H: Page faults in %pi",
+                       vlabel = "Pagefaults",
+                       detail = true,
+                       data = {
+                               sources = {
+                                       ps_pagefaults = { "minflt", "majflt" }
+                               },
 
-                                       options = {
-                                               ps_pagefaults__minflt = { color = "ff0000" },
-                                               ps_pagefaults__majflt = { color = "ff5500" }
-                                       }
+                               options = {
+                                       ps_pagefaults__minflt = { color = "ff0000" },
+                                       ps_pagefaults__majflt = { color = "ff5500" }
                                }
-                       },
-
-                       {
-                               number_format = "%5.1lf%s",
+                       }
+               },
 
-                               data = {
-                                       types = { "ps_rss" },
+               {
+                       title = "%H: Virtual memory size of %pi",
+                       vlabel = "Bytes",
+                       detail = true,
+                       number_format = "%5.1lf%sB",
+                       data = {
+                               types = { "ps_rss" },
 
-                                       options = {
-                                               ps_rss = { color = "0000ff" }
-                                       }
+                               options = {
+                                       ps_rss = { color = "0000ff" }
                                }
                        }
                }
-       end
+       }
 end