irq.lua 451 B

123456789101112131415161718
  1. -- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
  2. -- Licensed to the public under the Apache License 2.0.
  3. module("luci.statistics.rrdtool.definitions.irq", package.seeall)
  4. function rrdargs( graph, plugin, plugin_instance, dtype )
  5. return {
  6. title = "%H: Interrupts", vlabel = "Issues/s",
  7. number_format = "%5.0lf", data = {
  8. types = { "irq" },
  9. options = {
  10. irq = { title = "IRQ %di", noarea = true }
  11. }
  12. }
  13. }
  14. end