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

80 lines
1.7 KiB
TypeScript
Raw Normal View History

2023-01-13 05:40:33 +01:00
import si from "systeminformation";
import Xev from "xev";
import * as osUtils from "os-utils";
2017-06-08 18:03:54 +02:00
2022-04-17 07:42:13 +02:00
const ev = new Xev();
2017-06-08 18:03:54 +02:00
const interval = 2000;
2018-06-10 23:48:25 +02:00
2021-01-03 14:38:32 +01:00
const roundCpu = (num: number) => Math.round(num * 1000) / 1000;
const round = (num: number) => Math.round(num * 10) / 10;
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
*/
2023-01-13 05:40:33 +01:00
export default function () {
const log = [] as any[];
2023-01-13 05:40:33 +01:00
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 = {
2021-01-03 14:38:32 +01:00
cpu: roundCpu(cpu),
mem: {
2021-02-26 17:29:29 +01:00
used: round(memStats.used - memStats.buffers - memStats.cached),
2021-01-03 14:38:32 +01:00
active: round(memStats.active),
},
net: {
2021-01-03 14:38:32 +01:00
rx: round(Math.max(0, netStats.rx_sec)),
tx: round(Math.max(0, netStats.tx_sec)),
},
fs: {
2022-02-19 06:28:08 +01:00
r: round(Math.max(0, fsStats.rIO_sec ?? 0)),
w: round(Math.max(0, fsStats.wIO_sec ?? 0)),
2021-12-09 15:58:30 +01:00
},
};
2023-01-13 05:40:33 +01:00
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
2022-02-19 06:28:08 +01:00
function cpuUsage(): Promise<number> {
2018-07-27 11:42:58 +02:00
return new Promise((res, rej) => {
2022-02-19 06:28:08 +01:00
osUtils.cpuUsage((cpuUsage) => {
2018-07-27 11:42:58 +02:00
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 }));
2021-03-19 15:26:44 +01:00
return data || { rIO_sec: 0, wIO_sec: 0 };
2018-07-27 10:43:04 +02:00
}