egirlskey/src/daemons/server-stats.ts

68 lines
1.3 KiB
TypeScript
Raw Normal View History

2017-06-08 16:03:54 +00:00
import * as os from 'os';
2018-07-27 08:58:19 +00:00
import * as sysUtils from 'systeminformation';
2017-06-08 16:03:54 +00:00
import * as diskusage from 'diskusage';
2018-08-13 23:21:25 +00:00
import * as Deque from 'double-ended-queue';
2017-06-08 16:03:54 +00:00
import Xev from 'xev';
import * as osUtils from 'os-utils';
2017-06-08 16:03:54 +00:00
const ev = new Xev();
2018-06-10 21:48:25 +00:00
const interval = 1000;
2017-06-08 16:03:54 +00:00
/**
2018-06-08 19:14:26 +00:00
* Report server stats regularly
2017-06-08 16:03:54 +00:00
*/
export default function() {
2018-08-13 23:21:25 +00:00
const log = new Deque<any>();
ev.on('requestServerStatsLog', x => {
2018-09-01 14:12:51 +00:00
ev.emit(`serverStatsLog:${x.id}`, log.toArray().slice(0, x.length || 50));
});
2018-06-10 21:48:25 +00:00
async function tick() {
2018-07-27 08:43:04 +00:00
const cpu = await cpuUsage();
2018-07-27 09:18:05 +00:00
const usedmem = await usedMem();
const totalmem = await totalMem();
2018-12-08 01:40:45 +00:00
const disk = await diskusage.check(os.platform() == 'win32' ? 'c:' : '/');
const stats = {
cpu_usage: cpu,
mem: {
total: totalmem,
2018-07-27 09:18:05 +00:00
used: usedmem
},
disk,
os_uptime: os.uptime(),
process_uptime: process.uptime()
};
ev.emit('serverStats', stats);
log.unshift(stats);
if (log.length > 200) log.pop();
2018-06-10 21:48:25 +00:00
}
tick();
setInterval(tick, interval);
2017-06-08 16:03:54 +00:00
}
// CPU STAT
2018-07-27 09:42:58 +00:00
function cpuUsage() {
return new Promise((res, rej) => {
osUtils.cpuUsage((cpuUsage: number) => {
res(cpuUsage);
});
});
}
2018-07-27 08:43:04 +00:00
// MEMORY(excl buffer + cache) STAT
2018-07-27 09:18:05 +00:00
async function usedMem() {
const data = await sysUtils.mem();
return data.active;
}
// TOTAL MEMORY STAT
async function totalMem() {
const data = await sysUtils.mem();
return data.total;
2018-07-27 08:43:04 +00:00
}