summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua')
-rw-r--r--applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua77
1 files changed, 0 insertions, 77 deletions
diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua
deleted file mode 100644
index 9c8e3e1880..0000000000
--- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua
+++ /dev/null
@@ -1,77 +0,0 @@
--- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
--- Licensed to the public under the Apache License 2.0.
-
-m = Map("luci_statistics",
- translate("Exec Plugin Configuration"),
- translate(
- "The exec plugin starts external commands to read values " ..
- "from or to notify external processes when certain threshold " ..
- "values have been reached."
- ))
-
--- collectd_exec config section
-s = m:section( NamedSection, "collectd_exec", "luci_statistics" )
-
--- collectd_exec.enable
-enable = s:option( Flag, "enable", translate("Enable this plugin") )
-enable.default = 0
-
-
--- collectd_exec_input config section (Exec directives)
-exec = m:section( TypedSection, "collectd_exec_input",
- translate("Add command for reading values"),
- translate(
- "Here you can define external commands which will be " ..
- "started by collectd in order to read certain values. " ..
- "The values will be read from stdout."
- ))
-exec.addremove = true
-exec.anonymous = true
-
--- collectd_exec_input.cmdline
-exec_cmdline = exec:option( Value, "cmdline", translate("Script") )
-exec_cmdline.default = "/usr/bin/stat-dhcpusers"
-
--- collectd_exec_input.cmdline
-exec_cmduser = exec:option( Value, "cmduser", translate("User") )
-exec_cmduser.default = "nobody"
-exec_cmduser.rmempty = true
-exec_cmduser.optional = true
-
--- collectd_exec_input.cmdline
-exec_cmdgroup = exec:option( Value, "cmdgroup", translate("Group") )
-exec_cmdgroup.default = "nogroup"
-exec_cmdgroup.rmempty = true
-exec_cmdgroup.optional = true
-
-
--- collectd_exec_notify config section (NotifyExec directives)
-notify = m:section( TypedSection, "collectd_exec_notify",
- translate("Add notification command"),
- translate(
- "Here you can define external commands which will be " ..
- "started by collectd when certain threshold values have " ..
- "been reached. The values leading to invocation will be " ..
- "fed to the the called programs stdin."
- ))
-notify.addremove = true
-notify.anonymous = true
-
--- collectd_notify_input.cmdline
-notify_cmdline = notify:option( Value, "cmdline", translate("Script") )
-notify_cmdline.default = "/usr/bin/stat-dhcpusers"
-
--- collectd_notify_input.cmdline
-notify_cmduser = notify:option( Value, "cmduser", translate("User") )
-notify_cmduser.default = "nobody"
-notify_cmduser.rmempty = true
-notify_cmduser.optional = true
-
--- collectd_notify_input.cmdline
-notify_cmdgroup = notify:option( Value, "cmdgroup", translate("Group") )
-notify_cmdgroup.default = "nogroup"
-notify_cmdgroup.rmempty = true
-notify_cmdgroup.optional = true
-
-
-return m