2021-01-03 15:38:32 +02:00
|
|
|
import * as os from 'os';
|
|
|
|
import * as si from 'systeminformation';
|
2021-08-19 15:55:45 +03:00
|
|
|
import define from '../define';
|
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
|
|
|
|
|
|
|
desc: {
|
|
|
|
},
|
|
|
|
|
|
|
|
tags: ['meta'],
|
|
|
|
|
|
|
|
params: {
|
|
|
|
},
|
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
|
2021-01-03 15:38:32 +02:00
|
|
|
export default define(meta, async () => {
|
|
|
|
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,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
});
|