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

@@ -0,0 +1,14 @@
using System.Diagnostics.CodeAnalysis;
using MoonlightServers.Daemon.Helpers;
using MoonlightServers.DaemonShared.Http.Daemon;
using Riok.Mapperly.Abstractions;
namespace MoonlightServers.Daemon.Mappers;
[Mapper]
[SuppressMessage("Mapper", "RMG020:No members are mapped in an object mapping")]
[SuppressMessage("Mapper", "RMG012:No members are mapped in an object mapping")]
public static partial class SystemStatisticsMapper
{
public static partial SystemStatisticsDto ToDto(SystemMetrics.SystemSnapshot snapshot);
}