サーバー情報ウィジェット
This commit is contained in:
parent
e74a47916d
commit
c6fe798092
12 changed files with 757 additions and 8 deletions
35
src/server/api/endpoints/server-info.ts
Normal file
35
src/server/api/endpoints/server-info.ts
Normal file
|
@ -0,0 +1,35 @@
|
|||
import * as os from 'os';
|
||||
import * as si from 'systeminformation';
|
||||
import define from '../define';
|
||||
|
||||
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,
|
||||
cores: os.cpus().length
|
||||
},
|
||||
mem: {
|
||||
total: memStats.total
|
||||
},
|
||||
fs: {
|
||||
total: fsStats[0].size,
|
||||
used: fsStats[0].used,
|
||||
},
|
||||
};
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue