@if (IsOffline)
{
}
else
{
@*
Node overview
See all important details of this node at one quick look
*@
var cpuUsage = Math.Round(Status.CpuUsage.Average(x => x), 2) + "%";
var memoryUsage = $"{Formatter.FormatSize((long)(Status.MemoryTotal - Status.MemoryAvailable))} / {Formatter.FormatSize((long)Status.MemoryTotal)}";
var uptime = Formatter.FormatUptime(Status.Uptime);
var diskUsage = $"{Formatter.FormatSize((long)(Status.DiskTotal - Status.DiskFree))} / {Formatter.FormatSize((long)Status.DiskTotal)}";
CPU Cores
View the nodes cpu usage in detail
@{
int index = 1;
}
@foreach (var usage in Status.CpuUsage)
{
index++;
}
}