2020-01-30 04:37:25 +09:00
|
|
|
import * as os from 'os';
|
|
|
|
import * as si from 'systeminformation';
|
|
|
|
import { getConnection } from 'typeorm';
|
|
|
|
import define from '../../define';
|
2021-03-23 14:54:09 +09:00
|
|
|
import { redisClient } from '../../../../db/redis';
|
2020-01-30 04:37:25 +09:00
|
|
|
|
|
|
|
export const meta = {
|
2020-03-30 11:45:57 +09:00
|
|
|
requireCredential: true as const,
|
2020-10-17 20:12:00 +09:00
|
|
|
requireModerator: true,
|
2020-01-30 04:37:25 +09:00
|
|
|
|
2020-04-03 22:42:29 +09:00
|
|
|
tags: ['admin', 'meta'],
|
2020-01-30 04:37:25 +09:00
|
|
|
|
|
|
|
params: {
|
|
|
|
},
|
2021-03-06 22:34:11 +09:00
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
properties: {
|
|
|
|
machine: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
},
|
|
|
|
os: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
example: 'linux'
|
|
|
|
},
|
|
|
|
node: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
},
|
|
|
|
psql: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
},
|
|
|
|
cpu: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
properties: {
|
|
|
|
model: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
},
|
|
|
|
cores: {
|
|
|
|
type: 'number' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mem: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
properties: {
|
|
|
|
total: {
|
|
|
|
type: 'number' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
format: 'bytes',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
fs: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
properties: {
|
|
|
|
total: {
|
|
|
|
type: 'number' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
format: 'bytes',
|
|
|
|
},
|
|
|
|
used: {
|
|
|
|
type: 'number' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
format: 'bytes',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
net: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
properties: {
|
|
|
|
interface: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
example: 'eth0'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-30 04:37:25 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
export default define(meta, async () => {
|
|
|
|
const memStats = await si.mem();
|
|
|
|
const fsStats = await si.fsSize();
|
|
|
|
const netInterface = await si.networkInterfaceDefault();
|
|
|
|
|
|
|
|
return {
|
|
|
|
machine: os.hostname(),
|
|
|
|
os: os.platform(),
|
|
|
|
node: process.version,
|
|
|
|
psql: await getConnection().query('SHOW server_version').then(x => x[0].server_version),
|
2021-03-23 14:54:09 +09:00
|
|
|
redis: redisClient.server_info.redis_version,
|
2020-01-30 04:37:25 +09:00
|
|
|
cpu: {
|
|
|
|
model: os.cpus()[0].model,
|
|
|
|
cores: os.cpus().length
|
|
|
|
},
|
|
|
|
mem: {
|
|
|
|
total: memStats.total
|
|
|
|
},
|
|
|
|
fs: {
|
|
|
|
total: fsStats[0].size,
|
|
|
|
used: fsStats[0].used,
|
|
|
|
},
|
|
|
|
net: {
|
|
|
|
interface: netInterface
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|