21 lines
567 B
C#
21 lines
567 B
C#
namespace MxGateway.Server.Metrics;
|
|
|
|
public sealed record GatewayMetricsSnapshot(
|
|
int OpenSessions,
|
|
int WorkersRunning,
|
|
int EventQueueDepth,
|
|
long SessionsOpened,
|
|
long SessionsClosed,
|
|
long CommandsStarted,
|
|
long CommandsSucceeded,
|
|
long CommandsFailed,
|
|
long EventsReceived,
|
|
long QueueOverflows,
|
|
long Faults,
|
|
long WorkerKills,
|
|
long WorkerExits,
|
|
long HeartbeatFailures,
|
|
long StreamDisconnects,
|
|
IReadOnlyDictionary<string, long> CommandFailuresByMethod,
|
|
IReadOnlyDictionary<string, long> EventsByFamily);
|