diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2017-04-29 20:26:48 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-29 20:26:48 +0300 |
commit | 1497d4ad480be2d047b6523ef8b68d051fac04a2 (patch) | |
tree | 919d8d3bbf8b37f268e1ff62ea4b89ae6284a9c0 /applications/luci-app-statistics/luasrc/statistics | |
parent | a83f0edec21ddd562636e61fd8dcf2fee5b97632 (diff) | |
parent | 5bf636732efab13fdd92dabfd746cafb156dd4f6 (diff) |
Merge pull request #1132 from fantom-x/luci-collectd-mod-contextswitch
Support for collectd-mod-contextswitch
Diffstat (limited to 'applications/luci-app-statistics/luasrc/statistics')
-rw-r--r-- | applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua new file mode 100644 index 0000000000..6826e12adb --- /dev/null +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua @@ -0,0 +1,23 @@ +-- Licensed to the public under the Apache License 2.0. + +module("luci.statistics.rrdtool.definitions.contextswitch",package.seeall) + +function rrdargs( graph, plugin, plugin_instance, dtype ) + + return { + title = "%H: Context switches", + alt_autoscale = true, + vlabel = "Switches/s", + number_format = "%5.0lf", + data = { + types = { "contextswitch" }, + sources = { + contextswitch = { "value" } + }, + options = { + contextswitch = { color = "0000ff", title = "Context switches", noarea=true, overlay=true } + } + } + } +end + |