2008-05-21 03:56:35 +00:00
|
|
|
--[[
|
|
|
|
|
2008-05-21 03:58:14 +00:00
|
|
|
Luci configuration model for statistics - collectd tcpconns plugin configuration
|
2008-05-21 03:56:35 +00:00
|
|
|
(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
|
|
|
|
]]--
|
|
|
|
|
2010-04-13 20:42:26 +00:00
|
|
|
m = Map("luci_statistics",
|
|
|
|
translate("TCPConns Plugin Configuration"),
|
|
|
|
translate(
|
|
|
|
"The tcpconns plugin collects informations about open tcp " ..
|
|
|
|
"connections on selected ports."
|
|
|
|
))
|
2008-05-21 03:56:35 +00:00
|
|
|
|
|
|
|
-- collectd_tcpconns config section
|
2008-06-01 23:52:07 +00:00
|
|
|
s = m:section( NamedSection, "collectd_tcpconns", "luci_statistics" )
|
2008-05-21 03:56:35 +00:00
|
|
|
|
|
|
|
-- collectd_tcpconns.enable
|
2010-04-13 20:42:26 +00:00
|
|
|
enable = s:option( Flag, "enable", translate("Enable this plugin") )
|
2008-05-21 03:56:35 +00:00
|
|
|
enable.default = 0
|
|
|
|
|
|
|
|
-- collectd_tcpconns.listeningports (ListeningPorts)
|
2010-04-13 20:42:26 +00:00
|
|
|
listeningports = s:option( Flag, "ListeningPorts", translate("Monitor all local listen ports") )
|
2008-05-21 03:56:35 +00:00
|
|
|
listeningports.default = 1
|
|
|
|
listeningports:depends( "enable", 1 )
|
|
|
|
|
|
|
|
-- collectd_tcpconns.localports (LocalPort)
|
2010-04-13 20:42:26 +00:00
|
|
|
localports = s:option( Value, "LocalPorts", translate("Monitor local ports") )
|
2008-05-21 03:56:35 +00:00
|
|
|
localports.optional = true
|
|
|
|
localports:depends( "enable", 1 )
|
|
|
|
|
|
|
|
-- collectd_tcpconns.remoteports (RemotePort)
|
2010-04-13 20:42:26 +00:00
|
|
|
remoteports = s:option( Value, "RemotePorts", translate("Monitor remote ports") )
|
2008-05-21 03:56:35 +00:00
|
|
|
remoteports.optional = true
|
|
|
|
remoteports:depends( "enable", 1 )
|
|
|
|
|
|
|
|
return m
|