e7e3042a9511ebc61309d02bb098b054005e0a18
[project/luci.git] / applications / luci-statistics / src / model / cbi / admin_statistics / interface.lua
1 --[[
2
3 Luci configuration model for statistics - collectd interface 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 m = Map("luci_statistics", "Interface Plugin",
17 [[Das Interface-Plugin sammelt Informationen zum Netzwerkverkehr auf den einzelnen Schnittstellen.]])
18
19 -- collectd_interface config section
20 s = m:section( NamedSection, "collectd_interface", "luci_statistics", "Pluginkonfiguration" )
21
22 -- collectd_interface.enable
23 enable = s:option( Flag, "enable", "Plugin aktivieren" )
24 enable.default = 0
25
26 -- collectd_interface.interfaces (Interface)
27 interfaces = s:option( MultiValue, "Interfaces", "Überwachte Schnittstellen", "mehrere Einträge mit Strg selektieren" )
28 interfaces.widget = "select"
29 interfaces:depends( "enable", 1 )
30 for k, v in pairs(ffluci.model.uci.sections("network")) do
31         if v[".type"] == "interface" and k ~= "loopback" then
32                 interfaces:value(k)
33         end
34 end
35
36 -- collectd_interface.ignoreselected (IgnoreSelected)
37 ignoreselected = s:option( Flag, "IgnoreSelected", "Alle Schnittstellen außer ausgewählte überwachen" )
38 ignoreselected.default = 0
39 ignoreselected:depends( "enable", 1 )
40
41 return m