summaryrefslogtreecommitdiff
path: root/config-jarmon.js
blob: 21592212218a0563152c64bd919b66ca0dbbfae6 (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
/* Copyright (c) Richard Wall
 * See LICENSE for details.
 *
 * Some example recipes for Collectd RRD data - you *will* need to modify this
 * based on the RRD data available on your system.
 */

$(function() {

	for (var i = 0; i < jarmon.timeRangeShortcuts.length; i++) {
		if (jarmon.timeRangeShortcuts[i][0] === 'last day') {
			jarmon.timeRangeShortcuts[i][2] = true;
		}
	}

	var proton = 'https://proton.parabola.nu/collectd/proton.parabola.nu/'
	var winston = 'https://winston.parabola.nu/collectd/winston.parabola.nu/'

	var tabRecipes = [
		['Overview', ['cpu', 'memory', 'swap-use']],
		['Iface',    ['interface-inet', 'interface-lvpn', 'interface-lo']],
		['Other',    ['load', 'swap-use', 'swap-io', 'users', 'entropy', 'uptime']]
	];

	var chartRecipes = {
		'cpu': {
			title: 'CPU Usage',
			data: [
				[proton+'cpu-0/cpu-steal.rrd', 0, 'Steal', 'jiffy'],
				[proton+'cpu-0/cpu-interrupt.rrd', 0, 'IRQ', 'jiffy'],
				[proton+'cpu-0/cpu-softirq.rrd', 0, 'SoftIRQ', 'jiffy'],
				[proton+'cpu-0/cpu-system.rrd', 0, 'System', 'jiffy'],
				[proton+'cpu-0/cpu-wait.rrd', 0, 'IO', 'jiffy'],
				[proton+'cpu-0/cpu-user.rrd', 0, 'User', 'jiffy'],
				//[proton+'cpu-0/cpu-nice.rrd', 0, 'Nice', 'jiffy'],
				[proton+'cpu-0/cpu-idle.rrd', 0, 'Idle', 'jiffy'],
			],
			options: jQuery.extend(true, {},
					       jarmon.Chart.BASE_OPTIONS,
					       jarmon.Chart.STACKED_OPTIONS,
					       {yaxis: {min: 0, max: 110}})
		},

		'memory': {
			title: 'Memory',
			data: [
				[proton+'memory/memory-used.rrd', 0, 'Used', 'B'],
				[proton+'memory/memory-slab_unrecl.rrd', 0, 'Slab', 'B'],
				[proton+'memory/memory-slab_recl.rrd', 0, 'Slab (Recl)', 'B'],
				[proton+'memory/memory-cached.rrd', 0, 'Cached', 'B'],
				[proton+'memory/memory-buffered.rrd', 0, 'Buffered', 'B'],
				[proton+'memory/memory-free.rrd', 0, 'Free', 'B']
			],
			options: jQuery.extend(true, {}, jarmon.Chart.BASE_OPTIONS,
					       jarmon.Chart.STACKED_OPTIONS)
		},

		'load': {
			title: 'Load Average',
			data: [
				[proton+'load/load.rrd', 'shortterm', 'Short Term', ''],
				[proton+'load/load.rrd', 'midterm', 'Medium Term', ''],
				[proton+'load/load.rrd', 'longterm', 'Long Term', '']
			],
			options: jQuery.extend(true, {}, jarmon.Chart.BASE_OPTIONS)
		},

		'interface-inet': {
			title: 'ens18 Throughput',
			data: [
				[proton+'interface-ens18/if_octets.rrd', 'tx', 'Transmit', 'bit/s', function (v) { return -v*8; }],
				[proton+'interface-ens18/if_octets.rrd', 'rx', 'Receive', 'bit/s', function (v) { return v*8; }]
			],
			options: jQuery.extend(true, {}, jarmon.Chart.BASE_OPTIONS)
		},

		'interface-lvpn': {
			title: 'lvpn Throughput',
			data: [
				[proton+'interface-lvpn/if_octets.rrd', 'tx', 'Transmit', 'bit/s', function (v) { return -v*8; }],
				[proton+'interface-lvpn/if_octets.rrd', 'rx', 'Receive', 'bit/s', function (v) { return v*8; }]
			],
			options: jQuery.extend(true, {}, jarmon.Chart.BASE_OPTIONS)
		},

		'interface-lo': {
			title: 'lo Throughput',
			data: [
				[proton+'interface-lo/if_octets.rrd', 'tx', 'Transmit', 'bit/s', function (v) { return -v*8; }],
				[proton+'interface-lo/if_octets.rrd', 'rx', 'Receive', 'bit/s', function (v) { return v*8; }]
			],
			options: jQuery.extend(true, {}, jarmon.Chart.BASE_OPTIONS)
		},

		'entropy': {
			title: 'Entropy',
			data: [
				[proton+'entropy/entropy.rrd', 0, 'Entropy', 'b']
			],
			options: jQuery.extend(true, {},
					       jarmon.Chart.BASE_OPTIONS,
					       {series: {lines: {fill: 0.5}}})
		},

		'users': {
			title: 'Users',
			data: [
				[proton+'users/users.rrd', 0, 'Users', 'users']
			],
			options: jQuery.extend(true, {},
					       jarmon.Chart.BASE_OPTIONS,
					       {series: {lines: {fill: 0.5}}})
		},

		'uptime': {
			title: 'Uptime',
			data: [
				[proton+'uptime/uptime.rrd', 0, 'Uptime', 'days', function(v) { return v/(60*60*24); }]
			],
			options: jQuery.extend(true, {},
					       jarmon.Chart.BASE_OPTIONS,
					       {series: {lines: {fill: 0.5}}})
		},

		'swap-use': {
			title: 'Swap Usage',
			data: [
				[proton+'swap/swap-used.rrd', 0, 'Used', 'B'],
				[proton+'swap/swap-cached.rrd', 0, 'Cached', 'B'],
				[proton+'swap/swap-free.rrd', 0, 'Free', 'B']
			],
			options: jQuery.extend(true, {}, jarmon.Chart.BASE_OPTIONS,
					       jarmon.Chart.STACKED_OPTIONS)
		},

		'swap-io': {
			title: 'Swap IO',
			data: [
				/* In pages unless the Swap.ReportBytes option is set */
				[proton+'swap/swap_io-in.rrd', 0, 'In', 'page'],
				[proton+'swap/swap_io-out.rrd', 0, 'Out', 'page']
			],
			options: jQuery.extend(true, {}, jarmon.Chart.BASE_OPTIONS)
		}
	};

	var chartTemplate = $('.chart-container').remove();

	jarmon.buildTabbedChartUi(
		chartTemplate,
		chartRecipes,
		$('.tabbed-chart-interface'),
		tabRecipes,
		$('.chartRangeControl')
	);
});