-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.js
49 lines (37 loc) · 1.17 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
47
48
49
var pmx = require('pmx');
var pgClientFactory = require('./lib/clientFactory.js');
var pgStats = require('./lib/stats.js');
var pgActions = require('./lib/actions.js');
pmx.initModule({
pid: pmx.resolvePidPaths(['/var/run/postgresql/9.4-main.pid', '/var/run/postgresql/9.3-main.pid', '/var/run/postgresql/9.5-main.pid']),
// Options related to the display style on Keymetrics
widget: {
// Logo displayed
logo: 'http://www.inquidia.com/sites/default/files/postgresql_logo%5B1%5D.png',
// Module colors
// 0 = main element
// 1 = secondary
// 2 = main border
// 3 = secondary border
theme: ['#60798c', '#326892', '#ffffff', '#807C7C'],
// 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: ['Tables', 'Indexes','Total Tables Size','Backends Active','Exclusive Locks']
}
}
}, function (err, conf) {
var pgClient = pgClientFactory.build(conf);
// Init metrics refresh loop
pgStats.init(pgClient);
// Init actions
pgActions.init(pgClient);
});