luci-app-statistics: standardise newline usage

Fix newline usage in a few graph definitions.

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
This commit is contained in:
Hannu Nyman 2021-09-28 23:00:42 +03:00
parent 34450af82c
commit 12b13fe89a
4 changed files with 40 additions and 19 deletions

View file

@ -11,7 +11,8 @@ return baseclass.extend({
rrdargs: function(graph, host, plugin, plugin_instance, dtype) {
var traffic = {
title: "%H: DNS traffic", vlabel: "Bit/s",
title: "%H: DNS traffic",
vlabel: "Bit/s",
data: {
sources: {
@ -35,7 +36,8 @@ return baseclass.extend({
};
var opcode_query = {
title: "%H: DNS Opcode Query", vlabel: "Queries/s",
title: "%H: DNS Opcode Query",
vlabel: "Queries/s",
data: {
instances: {
dns_opcode: [ "Query" ]
@ -52,7 +54,8 @@ return baseclass.extend({
};
var qtype = {
title: "%H: DNS QType", vlabel: "Queries/s",
title: "%H: DNS QType",
vlabel: "Queries/s",
data: {
sources: { dns_qtype: [ "" ] },
options: {

View file

@ -8,8 +8,10 @@ return baseclass.extend({
rrdargs: function(graph, host, plugin, plugin_instance, dtype) {
return {
title: "%H: Interrupts", vlabel: "Issues/s",
number_format: "%5.0lf", data: {
title: "%H: Interrupts",
vlabel: "Issues/s",
number_format: "%5.0lf",
data: {
types: [ "irq" ],
options: {
irq: { title: "IRQ %di", noarea: true }

View file

@ -8,10 +8,12 @@ return baseclass.extend({
rrdargs: function(graph, host, plugin, plugin_instance, dtype) {
return {
title: "%H: Load", vlabel: "Load",
title: "%H: Load",
vlabel: "Load",
y_min: "0",
units_exponent: "0",
number_format: "%5.2lf", data: {
number_format: "%5.2lf",
data: {
sources: {
load: [ "shortterm", "midterm", "longterm" ]
},

View file

@ -15,8 +15,10 @@ return baseclass.extend({
if (plugin_instance == "routes") {
g.push({
/* diagram data description */
title: "%H: Total amount of OLSR routes", vlabel: "n",
number_format: "%5.0lf", data: {
title: "%H: Total amount of OLSR routes",
vlabel: "n",
number_format: "%5.0lf",
data: {
types: [ "routes" ],
options: {
routes: {
@ -26,8 +28,11 @@ return baseclass.extend({
}
}
}, {
title: "%H: Average route ETX", vlabel: "ETX", detail: true,
number_format: "%5.1lf", data: {
title: "%H: Average route ETX",
vlabel: "ETX",
detail: true,
number_format: "%5.1lf",
data: {
instances: [ "average" ], /* falls es irgendwann mal welche pro ip gibt, wie bei links, dann werden die hier excludiert */
types: [ "route_etx" ],
options: {
@ -37,8 +42,11 @@ return baseclass.extend({
}
}
}, {
title: "%H: Average route metric", vlabel: "metric", detail: true,
number_format: "%5.1lf", data: {
title: "%H: Average route metric",
vlabel: "metric",
detail: true,
number_format: "%5.1lf",
data: {
instances: [ "average" ], /* falls es irgendwann mal welche pro ip gibt, wie bei links, dann werden die hier excludiert */
types: [ "route_metric" ],
options: {
@ -52,8 +60,10 @@ return baseclass.extend({
else if (plugin_instance == "links") {
g.push({
/* diagram data description */
title: "%H: Total amount of OLSR neighbours", vlabel: "n",
number_format: "%5.0lf", data: {
title: "%H: Total amount of OLSR neighbours",
vlabel: "n",
number_format: "%5.0lf",
data: {
instances: [ "" ],
types: [ "links" ],
options: {
@ -95,8 +105,10 @@ return baseclass.extend({
}
else if (plugin_instance == "topology") {
g.push({
title: "%H: Total amount of OLSR links", vlabel: "n",
number_format: "%5.0lf", data: {
title: "%H: Total amount of OLSR links",
vlabel: "n",
number_format: "%5.0lf",
data: {
instances: [ "" ],
types: [ "links" ],
options: {
@ -107,8 +119,10 @@ return baseclass.extend({
}
}
}, {
title: "%H: Average signal quality", vlabel: "n",
number_format: "%5.2lf", detail: true,
title: "%H: Average signal quality",
vlabel: "n",
number_format: "%5.2lf",
detail: true,
data: {
instances: [ "average" ], /* exclude possible per-ip stuff */
types: [ "signal_quality" ],