diff options
author | Chizhong Jin <pjincz@gmail.com> | 2018-10-14 02:34:49 +0800 |
---|---|---|
committer | Chizhong Jin <pjincz@gmail.com> | 2018-10-14 02:34:49 +0800 |
commit | 2d1830422b90d3dadc07b2d1ee05b0dc8ef7c583 (patch) | |
tree | 63ebbb3e12c8e2d563fd3bcaa78dfacfd3ca751c /applications/luci-app-statistics/luasrc/model/cbi | |
parent | 4f9e23f2b6cc42b8c534d32ec8669b1583c22cc0 (diff) |
pp-statistics: add support for cUrl
Add collectd-mod-curl plugin support. Which can do some complex track,
such as grab stock, but by now, only response time are supported.
Signed-off-by: Chizhong Jin <pjincz@gmail.com>
Diffstat (limited to 'applications/luci-app-statistics/luasrc/model/cbi')
-rw-r--r-- | applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua new file mode 100644 index 0000000000..606e1cb0da --- /dev/null +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua @@ -0,0 +1,24 @@ +-- Copyright 2018 Chizhong Jin <pjincz@gmail.com> +-- Licensed to the public under the BSD 3-clause license + +m = Map("luci_statistics", + translate("cUrl Plugin Configuration")) + +s = m:section(NamedSection, "collectd_curl") +s_enable = s:option(Flag, "enable", translate("Enable this plugin")) +s_enable.default = 0 + +page = m:section(TypedSection, "collectd_curl_page") +page.addremove = true +page.anonymous = true +page.template = "cbi/tblsection" +page.sortable = true + +page_enable = page:option(Flag, "enable", translate("Enable")) +page_enable.default = 1 + +page_name = page:option(Value, "name", translate("Name")) + +page_addr = page:option(Value, "url", translate("URL")) + +return m |