summaryrefslogtreecommitdiff
path: root/cfg/jarmon-winston.js
blob: 8d05999e543cee687ec9e6f3a749b76f86b10af3 (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
/* 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.
 */
define(['jarmon'], function(jarmon) {
	var srv = 'https://winston.parabola.nu/collectd/winston.parabola.nu/'

	var tabRecipes = [
		['wOverview', ['wload', 'wmemory', 'winterface-inet']],
		//['wOverview', [/*'cpu', */'wmemory'/*, 'swap-use'*/]],
		//['wIface',    ['winterface-inet', /*'interface-lvpn',*/ 'winterface-lo']],
		//['wOther',    ['wload', /*'swap-use', 'swap-io', 'users', 'entropy', 'uptime'*/]],
	];

	var chartRecipes = {
		/*
		'cpu': {
			title: 'CPU Usage',
			data: [
				[srv+'cpu-0/cpu-steal.rrd', 0, 'Steal', 'jiffy'],
				[srv+'cpu-0/cpu-interrupt.rrd', 0, 'IRQ', 'jiffy'],
				[srv+'cpu-0/cpu-softirq.rrd', 0, 'SoftIRQ', 'jiffy'],
				[srv+'cpu-0/cpu-system.rrd', 0, 'System', 'jiffy'],
				[srv+'cpu-0/cpu-wait.rrd', 0, 'IO', 'jiffy'],
				[srv+'cpu-0/cpu-user.rrd', 0, 'User', 'jiffy'],
				//[srv+'cpu-0/cpu-nice.rrd', 0, 'Nice', 'jiffy'],
				[srv+'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}})
		},
		*/

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

		'wload': {
			title: 'Load Average',
			data: [
				[srv+'load/load.rrd', 'shortterm', 'Short Term (1m)', ''],
				[srv+'load/load.rrd', 'midterm', 'Medium Term (5m)', ''],
				[srv+'load/load.rrd', 'longterm', 'Long Term (15m)', '']
			],
			options: jQuery.extend(true, {},
					       jarmon.Chart.BASE_OPTIONS,
					       {yaxis: {min: 0}})
		},

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

		'winterface-lo': {
			title: 'lo Throughput',
			data: [
				[srv+'interface-lo/if_octets.rrd', 'tx', 'Transmit', 'bit/s', function (v) { return -v*8; }],
				[srv+'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: [
				[srv+'entropy/entropy.rrd', 0, 'Entropy', 'b']
			],
			options: jQuery.extend(true, {},
					       jarmon.Chart.BASE_OPTIONS,
					       {series: {lines: {fill: 0.5}}})
		},

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

		'uptime': {
			title: 'Uptime',
			data: [
				[srv+'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: [
				[srv+'swap/swap-used.rrd', 0, 'Used', 'B'],
				[srv+'swap/swap-cached.rrd', 0, 'Cached', 'B'],
				[srv+'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
				[srv+'swap/swap_io-in.rrd', 0, 'In', 'page'],
				[srv+'swap/swap_io-out.rrd', 0, 'Out', 'page']
			],
			options: jQuery.extend(true, {}, jarmon.Chart.BASE_OPTIONS)
		}
		*/
	};

	return {
		name: 'winston',
		chartRecipes,
		tabRecipes
	};
});