add some indirection around make targets of module.mk, so you can combine it more...
[project/luci.git] / applications / luci-statistics / src / model / cbi / luci_statistics / dns.lua
1 --[[
2
3 Luci configuration model for statistics - collectd dns plugin configuration
4 (c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10         http://www.apache.org/licenses/LICENSE-2.0
11
12 $Id$
13
14 ]]--
15
16 require("luci.sys")
17
18
19 m = Map("luci_statistics", "DNS Plugin",
20 [[Das DNS-Plugin nutzt die pcap Bibliothek um DNS-Verkehr zu analysieren.]])
21
22 -- collectd_dns config section
23 s = m:section( NamedSection, "collectd_dns", "luci_statistics", "Pluginkonfiguration" )
24
25 -- collectd_dns.enable
26 enable = s:option( Flag, "enable", "Plugin aktivieren" )
27 enable.default = 0
28
29 -- collectd_dns.interfaces (Interface)
30 interfaces = s:option( ListValue, "Interface", "Folgende Schnittstelle überwachen:" )
31 interfaces:depends( "enable", 1 )
32 interfaces:value("any")
33 for k, v in pairs(luci.sys.net.devices()) do
34         interfaces:value(v)
35 end
36
37 -- collectd_dns.ignoresources (IgnoreSource)
38 ignoresources = s:option( Value, "IgnoreSources", "Verkehr von folgenden IP Adressen ignorieren:", "mehrere Einträge mit Leerzeichen trennen" )
39 ignoresources.default = "127.0.0.1"
40 ignoresources:depends( "enable", 1 )
41
42 return m