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

43 lines
835 B
TypeScript
Raw Normal View History

2017-06-08 18:03:54 +02:00
import * as os from 'os';
const osUtils = require('os-utils');
import * as diskusage from 'diskusage';
import Xev from 'xev';
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-06-18 02:54:53 +02:00
const log: any[] = [];
ev.on('requestServerStatsLog', id => {
ev.emit('serverStatsLog:' + id, log);
});
2018-06-10 23:48:25 +02:00
async function tick() {
2018-06-18 02:54:53 +02:00
osUtils.cpuUsage((cpuUsage: number) => {
2017-06-08 18:03:54 +02:00
const disk = diskusage.checkSync(os.platform() == 'win32' ? 'c:' : '/');
const stats = {
2017-06-08 18:03:54 +02:00
cpu_usage: cpuUsage,
mem: {
total: os.totalmem(),
free: os.freemem()
},
2017-06-11 19:05:23 +02:00
disk,
os_uptime: os.uptime(),
process_uptime: process.uptime()
};
ev.emit('serverStats', stats);
log.push(stats);
if (log.length > 50) log.shift();
2017-06-08 18:03:54 +02:00
});
2018-06-10 23:48:25 +02:00
}
tick();
setInterval(tick, interval);
2017-06-08 18:03:54 +02:00
}