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