Implemented node system statistics

This commit is contained in:
2026-03-21 18:21:09 +00:00
parent ba5e364c05
commit 6d447a0ff9
28 changed files with 1402 additions and 156 deletions

View File

@@ -4,10 +4,12 @@
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Docker.DotNet.Enhanced" Version="3.132.0" />
<PackageReference Include="Riok.Mapperly" Version="5.0.0-next.2" />
</ItemGroup>
<ItemGroup>
@@ -26,6 +28,18 @@
<Compile Update="ServerSystem\Server.Update.cs">
<DependentUpon>Server.cs</DependentUpon>
</Compile>
<Compile Update="Helpers\SystemMetrics.Cpu.cs">
<DependentUpon>SystemMetrics.cs</DependentUpon>
</Compile>
<Compile Update="Helpers\SystemMetrics.Memory.cs">
<DependentUpon>SystemMetrics.cs</DependentUpon>
</Compile>
<Compile Update="Helpers\SystemMetrics.Network.cs">
<DependentUpon>SystemMetrics.cs</DependentUpon>
</Compile>
<Compile Update="Helpers\SystemMetrics.Disk.cs">
<DependentUpon>SystemMetrics.cs</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>