iceshrimp-legacy/src/daemons/server-stats.ts

78 lines
1.5 KiB
TypeScript
Raw Normal View History

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