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

77 lines
1.4 KiB
TypeScript
Raw Normal View History

import * as si from 'systeminformation';
2017-06-08 18:03:54 +02:00
import Xev from 'xev';
import * as osUtils from 'os-utils';
2017-06-08 18:03:54 +02:00
const ev = new Xev();
const interval = 2000;
2018-06-10 23:48:25 +02:00
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() {
const log = [] as any[];
ev.on('requestServerStatsLog', x => {
ev.emit(`serverStatsLog:${x.id}`, log.slice(0, x.length || 50));
});
2018-06-10 23:48:25 +02:00
async function tick() {
2018-07-27 10:43:04 +02:00
const cpu = await cpuUsage();
const memStats = await mem();
const netStats = await net();
const fsStats = await fs();
const stats = {
cpu: cpu,
mem: {
used: memStats.used,
active: memStats.active,
},
net: {
rx: Math.max(0, netStats.rx_sec),
tx: Math.max(0, netStats.tx_sec),
},
fs: {
r: Math.max(0, fsStats.rIO_sec),
w: Math.max(0, fsStats.wIO_sec),
}
};
ev.emit('serverStats', stats);
log.unshift(stats);
if (log.length > 200) log.pop();
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);
});
});
}
// MEMORY STAT
async function mem() {
const data = await si.mem();
return data;
}
// NETWORK STAT
async function net() {
const iface = await si.networkInterfaceDefault();
const data = await si.networkStats(iface);
return data[0];
}
// FS STAT
async function fs() {
const data = await si.disksIO().catch(() => ({ rIO_sec: 0, wIO_sec: 0 }));
return data;
2018-07-27 10:43:04 +02:00
}