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