mirror of
https://github.com/Stone-Red-Code/RemoteExec.git
synced 2026-09-04 17:16:22 +02:00
Add load balancing
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user