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