2020-01-29 21:37:25 +02:00
|
|
|
import * as os from 'os';
|
|
|
|
import * as si from 'systeminformation';
|
|
|
|
import { getConnection } from 'typeorm';
|
|
|
|
import define from '../../define';
|
2021-03-23 07:54:09 +02:00
|
|
|
import { redisClient } from '../../../../db/redis';
|
2020-01-29 21:37:25 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2020-03-30 05:45:57 +03:00
|
|
|
requireCredential: true as const,
|
2020-10-17 14:12:00 +03:00
|
|
|
requireModerator: true,
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2020-04-03 16:42:29 +03:00
|
|
|
tags: ['admin', 'meta'],
|
2020-01-29 21:37:25 +02:00
|
|
|
|
|
|
|
params: {
|
|
|
|
},
|
2021-03-06 15:34:11 +02: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-29 21:37:25 +02: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 07:54:09 +02:00
|
|
|
redis: redisClient.server_info.redis_version,
|
2020-01-29 21:37:25 +02: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
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|