mirror of
https://github.com/Stone-Red-Code/RemoteExec.git
synced 2026-09-04 23:42:03 +02:00
12 lines
392 B
C#
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;
|
|
} |