luci/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua
Jo-Philipp Wich 7a3493b1f7 Globally reduce copyright headers
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2015-01-16 23:38:38 +01:00

18 lines
459 B
Lua

-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>
-- Licensed to the public under the Apache License 2.0.
module("luci.statistics.rrdtool.definitions.irq", package.seeall)
function rrdargs( graph, plugin, plugin_instance, dtype )
return {
title = "%H: Interrupts", vlabel = "Issues/s",
number_format = "%5.0lf", data = {
types = { "irq" },
options = {
irq = { title = "IRQ %di", noarea = true }
}
}
}
end