2023-07-27 05:31:52 +00:00
|
|
|
/*
|
2024-02-13 15:59:27 +00:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 05:31:52 +00:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-02-27 02:07:39 +00:00
|
|
|
import * as os from 'node:os';
|
|
|
|
import sysUtils from 'systeminformation';
|
2022-09-19 20:32:18 +00:00
|
|
|
import type Logger from '@/logger.js';
|
2019-02-04 21:49:00 +00:00
|
|
|
|
|
|
|
export async function showMachineInfo(parentLogger: Logger) {
|
|
|
|
const logger = parentLogger.createSubLogger('machine');
|
|
|
|
logger.debug(`Hostname: ${os.hostname()}`);
|
2019-02-20 13:05:34 +00:00
|
|
|
logger.debug(`Platform: ${process.platform} Arch: ${process.arch}`);
|
2019-02-04 21:49:00 +00:00
|
|
|
const mem = await sysUtils.mem();
|
|
|
|
const totalmem = (mem.total / 1024 / 1024 / 1024).toFixed(1);
|
|
|
|
const availmem = (mem.available / 1024 / 1024 / 1024).toFixed(1);
|
2019-02-20 13:05:34 +00:00
|
|
|
logger.debug(`CPU: ${os.cpus().length} core MEM: ${totalmem}GB (available: ${availmem}GB)`);
|
2019-02-04 21:49:00 +00:00
|
|
|
}
|