Add load balancing

This commit is contained in:
Stone_Red
2025-12-20 18:46:21 +01:00
parent 7c3ab3a154
commit 27558ba3f2
10 changed files with 322 additions and 46 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace RemoteExec.Shared;
public sealed class ServerMetrics
{
public int ActiveConnections { get; set; }
public int ActiveTasks { get; set; }
public long TotalMemoryUsage { get; set; }
public double CpuUsage { get; set; }
public DateTime Timestamp { get; set; }
public string ServerId { get; set; } = string.Empty;
}