-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
HttpInterface.js
76 lines (64 loc) · 2.25 KB
/
HttpInterface.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
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
/**
* Copyright 2013-2022 the PM2 project authors. All rights reserved.
* Use of this source code is governed by a license that
* can be found in the LICENSE file.
*/
var http = require('http');
var os = require('os');
var pm2 = require('../index.js');
var urlT = require('url');
var cst = require('../constants.js');
// Default, attach to default local PM2
pm2.connect(function() {
startWebServer(pm2);
});
function startWebServer(pm2) {
http.createServer(function (req, res) {
// Add CORS headers to allow browsers to fetch data directly
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Access-Control-Allow-Headers', 'Cache-Control, Pragma, Origin, Authorization, Content-Type, X-Requested-With');
res.setHeader('Access-Control-Allow-Methods', 'GET');
// We always send json
res.setHeader('Content-Type','application/json');
var path = urlT.parse(req.url).pathname;
if (path == '/') {
// Main monit route
pm2.list(function(err, list) {
if (err) {
return res.send(err);
}
var data = {
system_info: { hostname: os.hostname(),
uptime: os.uptime()
},
monit: { loadavg: os.loadavg(),
total_mem: os.totalmem(),
free_mem: os.freemem(),
cpu: os.cpus(),
interfaces: os.networkInterfaces()
},
processes: list
};
if (cst.WEB_STRIP_ENV_VARS === true) {
for (var i = data.processes.length - 1; i >= 0; i--) {
var proc = data.processes[i];
// Strip important environment variables
if (typeof proc.pm2_env === 'undefined' && typeof proc.pm2_env.env === 'undefined') return;
delete proc.pm2_env.env;
}
}
res.statusCode = 200;
res.write(JSON.stringify(data));
return res.end();
})
}
else {
// 404
res.statusCode = 404;
res.write(JSON.stringify({err : '404'}));
return res.end();
}
}).listen(process.env.PM2_WEB_PORT || cst.WEB_PORT, cst.WEB_IPADDR, function() {
console.log('Web interface listening on %s:%s', cst.WEB_IPADDR, cst.WEB_PORT);
});
}