Files
RemoteExec/RemoteExec.Shared/ServerMetrics.cs
T

12 lines
392 B
C#

namespace RemoteExec.Shared;
public sealed class ServerMetrics
{
public int ActiveConnections { get; set; }
public int ActiveTasks { get; set; }
public int MaxConcurrentTasks { get; set; }
public long TotalMemoryUsage { get; set; }
public double CpuUsage { get; set; }
public DateTime Timestamp { get; set; }
public string ServerId { get; set; } = string.Empty;
}