summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/nut.js
blob: dbd25f6c0767c256ea4d2c36e1008fd4650e33d1 (plain)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/* Licensed to the public under the Apache License 2.0. */

'use strict';
'require baseclass';

return baseclass.extend({
	title: _('UPS'),

	rrdargs: function(graph, host, plugin, plugin_instance, dtype) {
		var definitions = [];
		var instances;

		function find_instances(dtype, wanted) {
			var matching = graph.dataInstances(host, plugin, plugin_instance, dtype).filter(function(instance) {
				return wanted.indexOf(instance) > -1;
			});

			return matching.length ? { [dtype]: matching } : null;
		}

		if ((instances = find_instances('voltage', [ 'input', 'output' ])) != null) {
			definitions.push({
				title: "%H: AC voltages on UPS \"%pi\"",
				vlabel: "V",
				number_format: "%5.1lfV",
				data: {
					instances: instances,
					options: {
						voltage_output : { color: "00e000", title: "Output voltage", noarea: true, overlay: true },
						voltage_input  : { color: "ffb000", title: "Input voltage", noarea: true, overlay: true }
					}
				}
			});
		}

		if ((instances = find_instances('voltage', [ 'battery' ])) != null) {
			definitions.push({
				title: "%H: Battery voltage on UPS \"%pi\"",
				vlabel: "V",
				number_format: "%5.1lfV",
				data: {
					instances: instances,
					options: {
						voltage: { color: "0000ff", title: "Battery voltage", noarea: true, overlay: true }
					}
				}
			});
		}

		if ((instances = find_instances('current', [ 'battery', 'output' ])) != null) {
			definitions.push({
				title: "%H: Current on UPS \"%pi\"",
				vlabel: "A",
				number_format: "%5.3lfA",
				data: {
					instances: instances,
					options: {
						current_output : { color: "00e000", title: "Output current", noarea: true, overlay: true },
						current_battery: { color: "0000ff", title: "Battery current", noarea: true, overlay: true }
					}
				}
			});
		}

		if ((instances = find_instances('percent', [ 'charge', 'load' ])) != null) {
			definitions.push({
				title: "%H: Battery charge/load on UPS \"%pi\"",
				vlabel: "Percent",
				y_min: "0",
				y_max: "100",
				number_format: "%5.1lf%%",
				data: {
					instances: instances,
					options: {
						percent_charge: { color: "00ff00", title: "Charge level", noarea: true, overlay: true },
						percent_load: { color: "ff0000", title: "Load", noarea: true, overlay: true }
					}
				}
			});
		}

		if ((instances = find_instances('temperature', [ 'battery' ])) != null) {
			/* Note: This is in ISO8859-1 for rrdtool. Welcome to the 20th century. */
			definitions.push({
				title: "%H: Battery temperature on UPS \"%pi\"",
				vlabel: "\u00b0C",
				number_format: "%5.1lf\u00b0C",
				data: {
					instances: instances,
					options: {
						temperature_battery: { color: "ffb000", title: "Battery temperature", noarea: true }
					}
				}
			});
		}

		if ((instances = find_instances('timeleft', [ 'battery' ])) != null) {
			definitions.push({
				title: "%H: Time left on UPS \"%pi\"",
				vlabel: "Minutes",
				number_format: "%.1lfm",
				data: {
					instances: instances,
					options: {
						timeleft_battery: { color: "0000ff", title: "Time left", transform_rpn: "60,/", noarea: true }
					}
				}
			});
		}

		if ((instances = find_instances('power', [ 'watt-ups' ])) != null) {
			definitions.push({
				title: "%H: Power on UPS \"%pi\"",
				vlabel: "Watt",
				number_format: "%5.1lf%%",
				data: {
					instances: instances,
					options: {
						['power_watt-ups']: { color: "00ff00", title: "Power level (Watt)"  }
					}
				}
			});
		}

		if ((instances = find_instances('power', [ 'ups' ])) != null) {
			definitions.push({
				title: "%H: Power on UPS \"%pi\"",
				vlabel: "VA",
				number_format: "%5.1lf%%",
				data: {
					instances: instances,
					options: {
						power_ups: { color: "00ff00", title: "Power level (VA)"  }
					}
				}
			});
		}

		if ((instances = find_instances('frequency', [ 'input', 'output' ])) != null) {
			definitions.push({
				title: "%H: Frequencies on UPS \"%pi\"",
				vlabel: "Hz",
				number_format: "%5.1lfHz",
				data: {
					instances: instances,
					options: {
						frequency_output : { color: "00e000", title: "Output frequency", noarea: true, overlay: true },
						frequency_input  : { color: "ffb000", title: "Input frequency", noarea: true, overlay: true }
					}
				}
			});
		}

		return definitions;
	}
});