@page @model Admin.Areas.Identity.Pages.Server.InfoModel @{ ViewData["Title"] = "서버 정보"; }

@ViewData["Title"]

Environment Name @Model.EnvironmentName
Content Root Path @Model.ContentRootPath
Application Name @Model.ApplicationName
OS Description @Model.OSDescription
OS Architecture @Model.OSArchitecture
.NET Framework Description @Model.FrameworkDescription
Process Architecture @Model.ProcessArchitecture
Machine Name @Model.MachineName
Current Directory @Model.CurrentDirectory
System Directory @Model.SystemDirectory
Is 64 Bit OS @Model.Is64BitOperatingSystem
Is 64 Bit Process @Model.Is64BitProcess
Processor Count @Model.ProcessorCount
TickCount (ms since startup) @Model.TickCount
WorkingSet (Memory) @Model.WorkingSet MB
Total Cpu Time @Model.TotalCpuTime

CPU

@foreach (var row in Model.CPU!) { }
Device ID @row["DeviceID"]?.ToString()
SocketDesignation @row["SocketDesignation"]?.ToString()
Load Percentage @row["LoadPercentage"]?.ToString()
Cores @row["NumberOfCores"]?.ToString()
Current Clock Speed @row["CurrentClockSpeed"]?.ToString()
AddressWidth @row["AddressWidth"]?.ToString()
Architecture @row["Architecture"]?.ToString()
Cores @row["NumberOfCores"]?.ToString()
Thread @row["NumberOfLogicalProcessors"]?.ToString()
L2 Cache Size @row["L2CacheSize"]?.ToString()
L3 Cache Size @row["L3CacheSize"]?.ToString()
Status @row["Status"]?.ToString()
Virtualization Firmware Enabled @row["VirtualizationFirmwareEnabled"]?.ToString()
VMMonitor Mode Extensions @row["VMMonitorModeExtensions"]?.ToString()
Manufacturer @row["Manufacturer"]?.ToString()
Description @row["Description"]?.ToString()

Memory

@foreach (var row in Model.Memory!) { foreach (var prop in row.Properties) { if (prop.Value is not null) { } } }
@prop.Name @prop.Value

Disk

@foreach (var row in Model.Disk!) { }
Index @row["Index"]?.ToString()
Interface Type @row["InterfaceType"]?.ToString()
Model @row["Model"]?.ToString()
Size @{ double microseconds = double.Parse(row["Size"]?.ToString()); var ts = TimeSpan.FromMicroseconds(microseconds); } @ts.ToString()
Caption @row["Caption"]?.ToString()
Description @row["Description"]?.ToString()
@section Styles { }