iceshrimp-legacy/src/server-stats.ts

37 lines
750 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();
/**
* Report stats regularly
*/
export default function() {
const log = [];
ev.on('requestServerStatsLog', id => {
ev.emit('serverStatsLog:' + id, log);
});
2017-06-08 18:03:54 +02:00
setInterval(() => {
osUtils.cpuUsage(cpuUsage => {
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
});
}, 1000);
}