blob: 608144f1357ce919ad87dab7c43588dc8af34d04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
-- Copyright 2011 Jo-Philipp Wich <jow@openwrt.org>
-- Licensed to the public under the Apache License 2.0.
m = Map("luci_statistics",
translate("Conntrack Plugin Configuration"),
translate("The conntrack plugin collects statistics about the number of tracked connections."))
s = m:section( NamedSection, "collectd_conntrack", "luci_statistics" )
enable = s:option( Flag, "enable", translate("Enable this plugin") )
enable.default = 0
return m
|