-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
46 lines (35 loc) · 1.01 KB
/
app.js
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
var pmx = require('pmx');
var varnishStats = require('./lib/stats.js');
var varnishActions = require('./lib/actions.js');
pmx.initModule({
pid: pmx.resolvePidPaths(['/var/run/varnishd.pid']),
// Options related to the display style on Keymetrics
widget: {
// Logo displayed
logo: 'https://www.varnish-cache.org/sites/default/files/pictures/varnishcache_rgb-gimp2-alpha.png',
// Module colors
// 0 = main element
// 1 = secondary
// 2 = main border
// 3 = secondary border
theme: ['#1B2228', '#1B2228', '#73b9e3', '#5c5c5b'],
// Section to show / hide
el: {
probes: true,
actions: true
},
// Main block to show / hide
block: {
actions: true,
issues: true,
meta: true,
// Custom metrics to put in BIG
main_probes: ['Uptime', 'Client Requests','Cache hits','Cache misses','Backend failures']
}
}
}, function (err, conf) {
// Init metrics refresh loop
varnishStats.init();
// Init actions
varnishActions.init();
});