2015-01-16 22:46:42 +00:00
|
|
|
-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
|
2015-01-16 22:38:38 +00:00
|
|
|
-- Licensed to the public under the Apache License 2.0.
|
2008-05-21 03:56:35 +00:00
|
|
|
|
2010-04-13 20:42:26 +00:00
|
|
|
m = Map("luci_statistics",
|
|
|
|
translate("TCPConns Plugin Configuration"),
|
|
|
|
translate(
|
2018-08-18 04:21:21 +00:00
|
|
|
"The tcpconns plugin collects information about open tcp " ..
|
2010-04-13 20:42:26 +00:00
|
|
|
"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
|