conntrack.lua 624 B

123456789101112131415161718192021
  1. --[[
  2. Copyright 2011 Jo-Philipp Wich <jow@openwrt.org>
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. ]]--
  8. m = Map("luci_statistics",
  9. translate("Conntrack Plugin Configuration"),
  10. translate("The conntrack plugin collects statistics about the number of tracked connections."))
  11. s = m:section( NamedSection, "collectd_conntrack", "luci_statistics" )
  12. enable = s:option( Flag, "enable", translate("Enable this plugin") )
  13. enable.default = 0
  14. return m