2023-01-13 05:40:33 +01:00
|
|
|
import * as os from "node:os";
|
|
|
|
import si from "systeminformation";
|
|
|
|
import define from "../define.js";
|
2021-01-03 14:38:32 +01:00
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: false,
|
2021-07-20 20:51:59 +02:00
|
|
|
requireCredentialPrivateMode: true,
|
2021-01-03 14:38:32 +01:00
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
tags: ["meta"],
|
2022-02-19 06:05:32 +01:00
|
|
|
} as const;
|
2021-01-03 14:38:32 +01:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "object",
|
2022-02-19 06:05:32 +01:00
|
|
|
properties: {},
|
|
|
|
required: [],
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2021-01-03 14:38:32 +01:00
|
|
|
|
2022-02-19 06:05:32 +01:00
|
|
|
export default define(meta, paramDef, async () => {
|
2021-01-03 14:38:32 +01:00
|
|
|
const memStats = await si.mem();
|
|
|
|
const fsStats = await si.fsSize();
|
|
|
|
|
|
|
|
return {
|
|
|
|
machine: os.hostname(),
|
|
|
|
cpu: {
|
|
|
|
model: os.cpus()[0].model,
|
2021-12-09 15:58:30 +01:00
|
|
|
cores: os.cpus().length,
|
2021-01-03 14:38:32 +01:00
|
|
|
},
|
|
|
|
mem: {
|
2021-12-09 15:58:30 +01:00
|
|
|
total: memStats.total,
|
2021-01-03 14:38:32 +01:00
|
|
|
},
|
|
|
|
fs: {
|
|
|
|
total: fsStats[0].size,
|
|
|
|
used: fsStats[0].used,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
});
|