mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 16:03:09 +02:00
d071d18dd7
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
36 lines
669 B
TypeScript
36 lines
669 B
TypeScript
import * as os from 'node:os';
|
|
import si from 'systeminformation';
|
|
import define from '../define.js';
|
|
|
|
export const meta = {
|
|
requireCredential: false,
|
|
|
|
tags: ['meta'],
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {},
|
|
required: [],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async () => {
|
|
const memStats = await si.mem();
|
|
const fsStats = await si.fsSize();
|
|
|
|
return {
|
|
machine: os.hostname(),
|
|
cpu: {
|
|
model: os.cpus()[0].model,
|
|
cores: os.cpus().length,
|
|
},
|
|
mem: {
|
|
total: memStats.total,
|
|
},
|
|
fs: {
|
|
total: fsStats[0].size,
|
|
used: fsStats[0].used,
|
|
},
|
|
};
|
|
});
|