2020-10-04 03:36:26 +01:00
|
|
|
import React, { useEffect, useState } from 'react';
|
2022-05-14 04:00:59 +01:00
|
|
|
import {
|
2022-06-20 22:26:47 +01:00
|
|
|
faClock,
|
|
|
|
faCloudDownloadAlt,
|
|
|
|
faCloudUploadAlt,
|
2022-05-14 04:00:59 +01:00
|
|
|
faHdd,
|
|
|
|
faMemory,
|
|
|
|
faMicrochip,
|
2022-06-20 22:26:47 +01:00
|
|
|
faWifi,
|
2022-05-14 04:00:59 +01:00
|
|
|
} from '@fortawesome/free-solid-svg-icons';
|
2022-06-26 19:34:09 +01:00
|
|
|
import { bytesToString, ip, mbToBytes } from '@/lib/formatters';
|
2020-10-04 03:36:26 +01:00
|
|
|
import { ServerContext } from '@/state/server';
|
2021-01-31 02:43:46 +00:00
|
|
|
import { SocketEvent, SocketRequest } from '@/components/server/events';
|
2021-10-03 20:59:44 +01:00
|
|
|
import UptimeDuration from '@/components/server/UptimeDuration';
|
2022-06-20 22:26:47 +01:00
|
|
|
import StatBlock from '@/components/server/console/StatBlock';
|
|
|
|
import useWebsocketEvent from '@/plugins/useWebsocketEvent';
|
2022-06-21 23:43:59 +01:00
|
|
|
import classNames from 'classnames';
|
2020-11-02 07:32:38 +00:00
|
|
|
|
2022-05-14 04:00:59 +01:00
|
|
|
type Stats = Record<'memory' | 'cpu' | 'disk' | 'uptime' | 'rx' | 'tx', number>;
|
2020-10-04 03:36:26 +01:00
|
|
|
|
2022-06-20 22:26:47 +01:00
|
|
|
const getBackgroundColor = (value: number, max: number | null): string | undefined => {
|
2022-06-26 20:13:52 +01:00
|
|
|
const delta = !max ? 0 : value / max;
|
2020-12-04 16:48:47 +00:00
|
|
|
|
2022-06-20 22:26:47 +01:00
|
|
|
if (delta > 0.8) {
|
|
|
|
if (delta > 0.9) {
|
|
|
|
return 'bg-red-500';
|
|
|
|
}
|
|
|
|
return 'bg-yellow-500';
|
2020-12-04 16:48:47 +00:00
|
|
|
}
|
|
|
|
|
2022-06-20 22:26:47 +01:00
|
|
|
return undefined;
|
|
|
|
};
|
|
|
|
|
2022-06-21 23:43:59 +01:00
|
|
|
const ServerDetailsBlock = ({ className }: { className?: string }) => {
|
2022-06-26 20:13:52 +01:00
|
|
|
const [stats, setStats] = useState<Stats>({ memory: 0, cpu: 0, disk: 0, uptime: 0, tx: 0, rx: 0 });
|
2020-10-04 03:36:26 +01:00
|
|
|
|
2022-06-26 20:13:52 +01:00
|
|
|
const status = ServerContext.useStoreState((state) => state.status.value);
|
|
|
|
const connected = ServerContext.useStoreState((state) => state.socket.connected);
|
|
|
|
const instance = ServerContext.useStoreState((state) => state.socket.instance);
|
|
|
|
const limits = ServerContext.useStoreState((state) => state.server.data!.limits);
|
|
|
|
const allocation = ServerContext.useStoreState((state) => {
|
|
|
|
const match = state.server.data!.allocations.find((allocation) => allocation.isDefault);
|
2022-06-20 22:26:47 +01:00
|
|
|
|
2022-06-26 19:34:09 +01:00
|
|
|
return !match ? 'n/a' : `${match.alias || ip(match.ip)}:${match.port}`;
|
2022-06-20 22:26:47 +01:00
|
|
|
});
|
2020-10-04 03:36:26 +01:00
|
|
|
|
2022-06-20 22:26:47 +01:00
|
|
|
useEffect(() => {
|
|
|
|
if (!connected || !instance) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
instance.send(SocketRequest.SEND_STATS);
|
2022-06-26 20:13:52 +01:00
|
|
|
}, [instance, connected]);
|
2022-06-20 22:26:47 +01:00
|
|
|
|
|
|
|
useWebsocketEvent(SocketEvent.STATS, (data) => {
|
2020-10-04 03:36:26 +01:00
|
|
|
let stats: any = {};
|
|
|
|
try {
|
|
|
|
stats = JSON.parse(data);
|
|
|
|
} catch (e) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
setStats({
|
|
|
|
memory: stats.memory_bytes,
|
|
|
|
cpu: stats.cpu_absolute,
|
|
|
|
disk: stats.disk_bytes,
|
2022-05-14 04:00:59 +01:00
|
|
|
tx: stats.network.tx_bytes,
|
|
|
|
rx: stats.network.rx_bytes,
|
2021-10-03 20:59:44 +01:00
|
|
|
uptime: stats.uptime || 0,
|
2020-10-04 03:36:26 +01:00
|
|
|
});
|
2022-06-20 22:26:47 +01:00
|
|
|
});
|
2020-10-04 03:36:26 +01:00
|
|
|
|
|
|
|
return (
|
2022-06-21 23:43:59 +01:00
|
|
|
<div className={classNames('grid grid-cols-6 gap-2 md:gap-4', className)}>
|
2022-06-28 00:18:58 +01:00
|
|
|
<StatBlock icon={faWifi} title={'Address'} copyOnClick={allocation}>
|
2022-06-26 02:31:10 +01:00
|
|
|
{allocation}
|
|
|
|
</StatBlock>
|
2022-06-20 22:26:47 +01:00
|
|
|
<StatBlock
|
|
|
|
icon={faClock}
|
|
|
|
title={'Uptime'}
|
2022-06-26 20:13:52 +01:00
|
|
|
color={getBackgroundColor(status === 'running' ? 0 : status !== 'offline' ? 9 : 10, 10)}
|
2022-06-20 22:26:47 +01:00
|
|
|
>
|
2022-06-26 20:13:52 +01:00
|
|
|
{stats.uptime > 0 ? <UptimeDuration uptime={stats.uptime / 1000} /> : 'Offline'}
|
2022-06-20 22:26:47 +01:00
|
|
|
</StatBlock>
|
|
|
|
<StatBlock
|
|
|
|
icon={faMicrochip}
|
2022-06-26 01:49:25 +01:00
|
|
|
title={'CPU Load'}
|
2022-06-20 22:26:47 +01:00
|
|
|
color={getBackgroundColor(stats.cpu, limits.cpu)}
|
2022-06-26 20:13:52 +01:00
|
|
|
description={
|
|
|
|
limits.cpu
|
|
|
|
? `This server is allowed to use up to ${limits.cpu}% of the host's available CPU resources.`
|
|
|
|
: 'No CPU limit has been configured for this server.'
|
2022-06-20 22:26:47 +01:00
|
|
|
}
|
|
|
|
>
|
2022-06-26 20:13:52 +01:00
|
|
|
{status === 'offline' ? <span className={'text-gray-400'}>Offline</span> : `${stats.cpu.toFixed(2)}%`}
|
2022-06-20 22:26:47 +01:00
|
|
|
</StatBlock>
|
|
|
|
<StatBlock
|
|
|
|
icon={faMemory}
|
|
|
|
title={'Memory'}
|
|
|
|
color={getBackgroundColor(stats.memory / 1024, limits.memory * 1024)}
|
2022-06-26 20:13:52 +01:00
|
|
|
description={
|
|
|
|
limits.memory
|
|
|
|
? `This server is allowed to use up to ${bytesToString(mbToBytes(limits.memory))} of memory.`
|
|
|
|
: 'No memory limit has been configured for this server.'
|
2022-06-20 22:26:47 +01:00
|
|
|
}
|
|
|
|
>
|
2022-06-26 20:13:52 +01:00
|
|
|
{status === 'offline' ? <span className={'text-gray-400'}>Offline</span> : bytesToString(stats.memory)}
|
2022-06-20 22:26:47 +01:00
|
|
|
</StatBlock>
|
|
|
|
<StatBlock
|
|
|
|
icon={faHdd}
|
|
|
|
title={'Disk'}
|
|
|
|
color={getBackgroundColor(stats.disk / 1024, limits.disk * 1024)}
|
2022-06-26 20:13:52 +01:00
|
|
|
description={
|
|
|
|
limits.disk
|
|
|
|
? `This server is allowed to use up to ${bytesToString(mbToBytes(limits.disk))} of disk space.`
|
|
|
|
: 'No disk space limit has been configured for this server.'
|
2022-06-20 22:26:47 +01:00
|
|
|
}
|
|
|
|
>
|
2022-06-26 19:34:09 +01:00
|
|
|
{bytesToString(stats.disk)}
|
2022-06-20 22:26:47 +01:00
|
|
|
</StatBlock>
|
|
|
|
<StatBlock
|
|
|
|
icon={faCloudDownloadAlt}
|
|
|
|
title={'Network (Inbound)'}
|
2022-06-27 23:30:21 +01:00
|
|
|
description={'The total amount of network traffic that your server has received since it was started.'}
|
2022-06-20 22:26:47 +01:00
|
|
|
>
|
2022-06-27 23:30:21 +01:00
|
|
|
{status === 'offline' ? <span className={'text-gray-400'}>Offline</span> : bytesToString(stats.rx)}
|
2022-06-20 22:26:47 +01:00
|
|
|
</StatBlock>
|
|
|
|
<StatBlock
|
|
|
|
icon={faCloudUploadAlt}
|
|
|
|
title={'Network (Outbound)'}
|
2022-06-26 20:13:52 +01:00
|
|
|
description={
|
|
|
|
'The total amount of traffic your server has sent across the internet since it was started.'
|
2021-10-03 20:59:44 +01:00
|
|
|
}
|
2022-06-26 20:13:52 +01:00
|
|
|
>
|
2022-06-27 23:30:21 +01:00
|
|
|
{status === 'offline' ? <span className={'text-gray-400'}>Offline</span> : bytesToString(stats.tx)}
|
2022-06-20 22:26:47 +01:00
|
|
|
</StatBlock>
|
|
|
|
</div>
|
2020-10-04 03:36:26 +01:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ServerDetailsBlock;
|