2021-08-14 23:15:19 +02:00
|
|
|
import os from "os";
|
|
|
|
import osu from "node-os-utils";
|
|
|
|
|
|
|
|
export function initStats() {
|
|
|
|
console.log(`[CPU] ${osu.cpu.model()} Cores x${osu.cpu.count()}`);
|
|
|
|
console.log(`[System] ${os.platform()} ${os.arch()}`);
|
|
|
|
console.log(`[Database] started`);
|
|
|
|
console.log(`[Process] running with pid: ${process.pid}`);
|
|
|
|
|
|
|
|
setInterval(async () => {
|
|
|
|
const [cpuUsed, memory, network] = await Promise.all([osu.cpu.usage(), osu.mem.info(), osu.netstat.inOut()]);
|
2021-08-17 20:37:13 +02:00
|
|
|
var networkUsage = "";
|
2021-08-14 23:15:19 +02:00
|
|
|
if (typeof network === "object") {
|
2021-08-17 20:37:13 +02:00
|
|
|
networkUsage = `| [Network]: in ${network.total.inputMb}mb | out ${network.total.outputMb}mb`;
|
2021-08-14 23:15:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
console.log(
|
|
|
|
`[CPU] ${cpuUsed.toFixed(2)}% | [Memory] ${Math.round(
|
|
|
|
process.memoryUsage().rss / 1024 / 1024
|
2021-08-17 20:37:13 +02:00
|
|
|
)}mb/${memory.totalMemMb.toFixed(0)}mb ${networkUsage}`
|
2021-08-14 23:15:19 +02:00
|
|
|
);
|
2021-08-15 21:56:30 +02:00
|
|
|
}, 1000 * 30);
|
2021-08-14 23:15:19 +02:00
|
|
|
}
|