1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/* Licensed to the public under the Apache License 2.0. */
'use strict';
'require baseclass';
return baseclass.extend({
title: _('Conntrack'),
rrdargs(graph, host, plugin, plugin_instance, dtype) {
const entries = {
title: "%H: Conntrack entries",
vlabel: "Count",
number_format: "%5.0lf",
data: {
/* collectd 5.5+: specify "" to exclude "max" instance */
instances: {
conntrack: [ "" ]
},
sources: {
conntrack: [ "value" ]
},
options: {
conntrack: {
color: "0000ff",
title: "Tracked connections"
}
}
}
};
const percent = {
title: "%H: Conntrack usage",
vlabel: "Percent",
number_format: "%5.1lf%%",
y_min: "0",
y_max: "2",
alt_autoscale_max: true,
data: {
instances: {
percent: [ "used" ]
},
options: {
percent_used: {
color: "00ff00",
title: "Used"
}
}
}
};
return [ entries, percent ];
}
});
|