entropy.lua 432 B

1234567891011121314
  1. -- Copyright 2015 Hannu Nyman <hannu.nyman@iki.fi>
  2. -- Licensed to the public under the Apache License 2.0.
  3. m = Map("luci_statistics",
  4. translate("Entropy Plugin Configuration"),
  5. translate("The entropy plugin collects statistics about the available entropy."))
  6. s = m:section( NamedSection, "collectd_entropy", "luci_statistics" )
  7. enable = s:option( Flag, "enable", translate("Enable this plugin") )
  8. enable.default = 0
  9. return m