37 lines
1.1 KiB
Lua
37 lines
1.1 KiB
Lua
|
-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
|
||
|
-- Licensed to the public under the Apache License 2.0.
|
||
|
|
||
|
require("luci.sys")
|
||
|
|
||
|
|
||
|
m = Map("luci_statistics",
|
||
|
translate("DNS Plugin Configuration"),
|
||
|
translate(
|
||
|
"The dns plugin collects detailled statistics about dns " ..
|
||
|
"related traffic on selected interfaces."
|
||
|
))
|
||
|
|
||
|
-- collectd_dns config section
|
||
|
s = m:section( NamedSection, "collectd_dns", "luci_statistics" )
|
||
|
|
||
|
-- collectd_dns.enable
|
||
|
enable = s:option( Flag, "enable", translate("Enable this plugin") )
|
||
|
enable.default = 0
|
||
|
|
||
|
-- collectd_dns.interfaces (Interface)
|
||
|
interfaces = s:option( MultiValue, "Interfaces", translate("Monitor interfaces") )
|
||
|
interfaces.widget = "select"
|
||
|
interfaces.size = 5
|
||
|
interfaces:depends( "enable", 1 )
|
||
|
interfaces:value("any")
|
||
|
for k, v in pairs(luci.sys.net.devices()) do
|
||
|
interfaces:value(v)
|
||
|
end
|
||
|
|
||
|
-- collectd_dns.ignoresources (IgnoreSource)
|
||
|
ignoresources = s:option( Value, "IgnoreSources", translate("Ignore source addresses") )
|
||
|
ignoresources.default = "127.0.0.1"
|
||
|
ignoresources:depends( "enable", 1 )
|
||
|
|
||
|
return m
|