mirror of
https://github.com/benphelps/homepage.git
synced 2025-12-21 11:19:42 +01:00
15 lines
315 B
JavaScript
15 lines
315 B
JavaScript
|
|
import { cpu, drive, mem, netstat } from "node-os-utils";
|
||
|
|
|
||
|
|
export default async function handler(req, res) {
|
||
|
|
const { disk } = req.query;
|
||
|
|
|
||
|
|
res.send({
|
||
|
|
cpu: {
|
||
|
|
usage: await cpu.usage(),
|
||
|
|
load: cpu.loadavgTime(5),
|
||
|
|
},
|
||
|
|
drive: await drive.info(disk || "/"),
|
||
|
|
memory: await mem.info(),
|
||
|
|
});
|
||
|
|
}
|