1
0

load.lua 513 B

1234567891011121314151617
  1. -- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
  2. -- Licensed to the public under the Apache License 2.0.
  3. m = Map("luci_statistics",
  4. translate("Load Plugin Configuration"),
  5. translate(
  6. "The load plugin collects statistics about the general system load."
  7. ))
  8. -- collectd_wireless config section
  9. s = m:section( NamedSection, "collectd_load", "luci_statistics" )
  10. -- collectd_wireless.enable
  11. enable = s:option( Flag, "enable", translate("Enable this plugin") )
  12. enable.default = 0
  13. return m