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