1
0

entropy.lua 433 B

12345678910111213141516171819
  1. -- Copyright 2015 Hannu Nyman <hannu.nyman@iki.fi>
  2. -- Licensed to the public under the Apache License 2.0.
  3. module("luci.statistics.rrdtool.definitions.entropy", package.seeall)
  4. function rrdargs( graph, plugin, plugin_instance, dtype )
  5. return {
  6. title = "%H: Available entropy",
  7. vlabel = "bits",
  8. number_format = "%4.0lf",
  9. data = {
  10. types = { "entropy" },
  11. options = { entropy = { title = "Entropy %di" } }
  12. }
  13. }
  14. end