Files
homepage/src/pages/api/widgets/resources.js
2022-09-09 15:27:42 +03:00

39 lines
748 B
JavaScript

import { existsSync } from "fs";
import { cpu, drive, mem } from "node-os-utils";
export default async function handler(req, res) {
const { type, target } = req.query;
if (type === "cpu") {
return res.status(200).json({
cpu: {
usage: await cpu.usage(1000),
load: cpu.loadavgTime(5),
},
});
}
if (type === "disk") {
if (!existsSync(target)) {
return res.status(404).json({
error: "Target not found",
});
}
return res.status(200).json({
drive: await drive.info(target || "/"),
});
}
if (type === "memory") {
return res.status(200).json({
memory: await mem.info(),
});
}
return res.status(400).json({
error: "invalid type",
});
}