mirror of
https://github.com/Stone-Red-Code/RemoteExec.git
synced 2026-09-04 17:16:22 +02:00
11 lines
344 B
C#
11 lines
344 B
C#
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;
|
|
} |