paricafe/src/daemons/server-stats.ts

77 lines
1.4 KiB
TypeScript
Raw Normal View History

2017-06-08 11:03:54 -05:00
import * as os from 'os';
2018-07-27 03:58:19 -05:00
import * as sysUtils from 'systeminformation';
2017-06-08 11:03:54 -05:00
import * as diskusage from 'diskusage';
import Xev from 'xev';
2018-07-27 04:42:58 -05:00
const osUtils = require('os-utils');
2017-06-08 11:03:54 -05:00
const ev = new Xev();
2018-06-10 16:48:25 -05:00
const interval = 1000;
2017-06-08 11:03:54 -05:00
/**
2018-06-08 14:14:26 -05:00
* Report server stats regularly
2017-06-08 11:03:54 -05:00
*/
export default function() {
2018-06-17 19:54:53 -05:00
const log: any[] = [];
ev.on('requestServerStatsLog', id => {
ev.emit('serverStatsLog:' + id, log);
});
2018-06-10 16:48:25 -05:00
async function tick() {
2018-07-27 03:43:04 -05:00
const cpu = await cpuUsage();
2018-07-27 04:18:05 -05:00
const usedmem = await usedMem();
const totalmem = await totalMem();
2018-07-27 03:43:04 -05:00
const disk = diskusage.checkSync(os.platform() == 'win32' ? 'c:' : '/');
const stats = {
cpu_usage: cpu,
mem: {
total: totalmem,
2018-07-27 04:18:05 -05:00
used: usedmem
},
disk,
os_uptime: os.uptime(),
process_uptime: process.uptime()
};
ev.emit('serverStats', stats);
log.push(stats);
2018-07-27 03:33:21 -05:00
if (log.length > 50) log.shift();
2018-06-10 16:48:25 -05:00
}
tick();
setInterval(tick, interval);
2017-06-08 11:03:54 -05:00
}
// CPU STAT
2018-07-27 04:42:58 -05:00
function cpuUsage() {
return new Promise((res, rej) => {
osUtils.cpuUsage((cpuUsage: number) => {
res(cpuUsage);
});
});
}
2018-07-27 03:43:04 -05:00
// MEMORY(excl buffer + cache) STAT
2018-07-27 04:18:05 -05:00
async function usedMem() {
2018-07-27 03:43:04 -05:00
try {
const data = await sysUtils.mem();
return data.active;
} catch (error) {
console.error(error);
2018-07-27 03:51:40 -05:00
throw error;
2018-07-27 03:43:04 -05:00
}
}
// TOTAL MEMORY STAT
async function totalMem() {
2018-07-27 03:43:04 -05:00
try {
const data = await sysUtils.mem();
return data.total;
} catch (error) {
console.error(error);
2018-07-27 03:51:40 -05:00
throw error;
2018-07-27 03:43:04 -05:00
}
}