158fbce9e3a81c2a6ac455aaa527671994a28ba2
[project/luci.git] / applications / luci-app-statistics / htdocs / luci-static / resources / statistics / rrdtool / definitions / irq.js
1 /* Licensed to the public under the Apache License 2.0. */
2
3 'use strict';
4
5 return L.Class.extend({
6 title: _('Interrupts'),
7
8 rrdargs: function(graph, host, plugin, plugin_instance, dtype) {
9 return {
10 title: "%H: Interrupts", vlabel: "Issues/s",
11 number_format: "%5.0lf", data: {
12 types: [ "irq" ],
13 options: {
14 irq: { title: "IRQ %di", noarea: true }
15 }
16 }
17 };
18 }
19 });