5e2e40a927
Behavior-preserving allocation cuts on the per-event/per-command path: - GWC-06: StreamEvents send-timing uses Stopwatch.GetTimestamp() + GetElapsedTime() instead of a per-event Stopwatch allocation (same measured span). - GWC-07/IPC-05 (event): MapEvent transfers ownership of the inner MxEvent instead of .Clone()-ing it. Safe: WorkerEvent is parsed fresh per pipe frame with the distributor pump as its single consumer (GWC-01), MapEvent runs once before fan-out, and every downstream consumer (subscribers, replay ring) only READS the event (WorkerSequence is stamped upstream; verified no post-mapping mutation). Comment documents the invariant + restore-clone caveat if a second consumer is added. - IPC-05 (command): CreateCommandEnvelope no longer re-clones; MapCommand already isolated the graph from the caller-owned gRPC message. - GWC-15: grpc_stream_queue.depth converts from a per-event push counter to an ObservableGauge summing registered channel sources at scrape time only (name/semantics unchanged); removes all per-event .Count/lock work. Kept every load-bearing isolation clone (MapCommand, Invoke, bulk filters, MapCommandReply). Server build clean (0 warnings); EventStream/Metrics/ Distributor/Mapper tests 62/62 (incl. formerly-flaky queue-depth tests, now green under the lazy gauge, + 2 new MapEvent ownership tests). Docs: Metrics.md, Grpc.md. Claude-Session: https://claude.ai/code/session_01DMXXvNuPekkkrTEyPNxEkW
231 lines
8.9 KiB
C#
231 lines
8.9 KiB
C#
using System.Diagnostics.Metrics;
|
|
using ZB.MOM.WW.MxGateway.Server.Metrics;
|
|
|
|
namespace ZB.MOM.WW.MxGateway.Tests.Metrics;
|
|
|
|
public sealed class GatewayMetricsTests
|
|
{
|
|
/// <summary>Verifies that snapshot reflects all metric updates.</summary>
|
|
[Fact]
|
|
public void GetSnapshot_ReflectsSessionWorkerCommandEventAndFaultUpdates()
|
|
{
|
|
using GatewayMetrics metrics = new();
|
|
|
|
metrics.SessionOpened();
|
|
metrics.WorkerStarted(TimeSpan.FromMilliseconds(250));
|
|
metrics.CommandStarted("Register");
|
|
metrics.CommandSucceeded("Register", TimeSpan.FromMilliseconds(10));
|
|
metrics.CommandStarted("WriteSecured");
|
|
metrics.CommandFailed("WriteSecured", "AuthorizationFailed", TimeSpan.FromMilliseconds(12));
|
|
metrics.EventReceived("session-1", "OnDataChange");
|
|
metrics.EventReceived("session-1", "OnDataChange");
|
|
metrics.SetWorkerEventQueueDepth(7);
|
|
// GWC-15: the gRPC stream queue-depth gauge sums live backlog sources at collection time
|
|
// rather than tracking a pushed running total. Register a source reporting 3.
|
|
using IDisposable backlogSource = metrics.RegisterEventStreamBacklogSource(static () => 3);
|
|
metrics.QueueOverflow("session-events");
|
|
metrics.Fault("CommandTimeout");
|
|
metrics.WorkerKilled("CommandTimeout");
|
|
metrics.WorkerStopped("Killed");
|
|
metrics.HeartbeatFailed("session-1");
|
|
metrics.StreamDisconnected("ClientCancelled");
|
|
metrics.SessionClosed();
|
|
|
|
GatewayMetricsSnapshot snapshot = metrics.GetSnapshot();
|
|
|
|
Assert.Equal(0, snapshot.OpenSessions);
|
|
Assert.Equal(0, snapshot.WorkersRunning);
|
|
Assert.Equal(7, snapshot.WorkerEventQueueDepth);
|
|
Assert.Equal(3, snapshot.GrpcEventStreamQueueDepth);
|
|
Assert.Equal(1, snapshot.SessionsOpened);
|
|
Assert.Equal(1, snapshot.SessionsClosed);
|
|
Assert.Equal(2, snapshot.CommandsStarted);
|
|
Assert.Equal(1, snapshot.CommandsSucceeded);
|
|
Assert.Equal(1, snapshot.CommandsFailed);
|
|
Assert.Equal(2, snapshot.EventsReceived);
|
|
Assert.Equal(1, snapshot.QueueOverflows);
|
|
Assert.Equal(1, snapshot.Faults);
|
|
Assert.Equal(1, snapshot.WorkerKills);
|
|
Assert.Equal(1, snapshot.WorkerExits);
|
|
Assert.Equal(1, snapshot.HeartbeatFailures);
|
|
Assert.Equal(1, snapshot.StreamDisconnects);
|
|
Assert.Equal(1, snapshot.CommandFailuresByMethod["WriteSecured"]);
|
|
Assert.Equal(2, snapshot.EventsByFamily["OnDataChange"]);
|
|
Assert.Equal(2, snapshot.EventsBySession["session-1"]);
|
|
}
|
|
|
|
/// <summary>Verifies that negative queue depth is rejected.</summary>
|
|
[Fact]
|
|
public void SetEventQueueDepth_RejectsNegativeDepth()
|
|
{
|
|
using GatewayMetrics metrics = new();
|
|
|
|
ArgumentOutOfRangeException exception = Assert.Throws<ArgumentOutOfRangeException>(
|
|
() => metrics.SetWorkerEventQueueDepth(-1));
|
|
|
|
Assert.Equal("depth", exception.ParamName);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Verifies that <see cref="GatewayMetrics.AlarmProviderSwitched"/> increments
|
|
/// <c>mxgateway.alarms.provider_switches</c> by one with the expected from/to/reason tags.
|
|
/// The listener filters by the specific <see cref="System.Diagnostics.Metrics.Meter"/> instance
|
|
/// to avoid cross-talk between parallel tests.
|
|
/// </summary>
|
|
[Fact]
|
|
public void AlarmProviderSwitched_IncrementsCounterWithExpectedTags()
|
|
{
|
|
using GatewayMetrics metrics = new();
|
|
using MeterListener listener = new();
|
|
|
|
long capturedValue = 0;
|
|
string? capturedFrom = null;
|
|
string? capturedTo = null;
|
|
string? capturedReason = null;
|
|
|
|
listener.InstrumentPublished = (instrument, meterListener) =>
|
|
{
|
|
if (ReferenceEquals(instrument.Meter, metrics.Meter)
|
|
&& instrument.Name == "mxgateway.alarms.provider_switches")
|
|
{
|
|
meterListener.EnableMeasurementEvents(instrument);
|
|
}
|
|
};
|
|
listener.SetMeasurementEventCallback<long>(
|
|
(instrument, measurement, tags, _) =>
|
|
{
|
|
if (!ReferenceEquals(instrument.Meter, metrics.Meter)
|
|
|| instrument.Name != "mxgateway.alarms.provider_switches")
|
|
{
|
|
return;
|
|
}
|
|
|
|
capturedValue += measurement;
|
|
foreach (KeyValuePair<string, object?> tag in tags)
|
|
{
|
|
switch (tag.Key)
|
|
{
|
|
case "from": capturedFrom = tag.Value as string; break;
|
|
case "to": capturedTo = tag.Value as string; break;
|
|
case "reason": capturedReason = tag.Value as string; break;
|
|
}
|
|
}
|
|
});
|
|
listener.Start();
|
|
|
|
metrics.AlarmProviderSwitched(1, 2, AlarmProviderSwitchReason.Failover);
|
|
|
|
Assert.Equal(1, capturedValue);
|
|
Assert.Equal("1", capturedFrom);
|
|
Assert.Equal("2", capturedTo);
|
|
Assert.Equal("failover", capturedReason);
|
|
Assert.Equal(1, metrics.GetSnapshot().AlarmProviderSwitchCount);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Verifies that <see cref="GatewayMetrics.AlarmProviderSwitched"/> updates the
|
|
/// <c>mxgateway.alarms.provider_mode</c> observable gauge to the <paramref name="toMode"/> value.
|
|
/// </summary>
|
|
[Fact]
|
|
public void AlarmProviderSwitched_UpdatesProviderModeGauge()
|
|
{
|
|
using GatewayMetrics metrics = new();
|
|
using MeterListener listener = new();
|
|
|
|
int? capturedMode = null;
|
|
|
|
listener.InstrumentPublished = (instrument, meterListener) =>
|
|
{
|
|
if (ReferenceEquals(instrument.Meter, metrics.Meter)
|
|
&& instrument.Name == "mxgateway.alarms.provider_mode")
|
|
{
|
|
meterListener.EnableMeasurementEvents(instrument);
|
|
}
|
|
};
|
|
listener.SetMeasurementEventCallback<int>(
|
|
(instrument, measurement, _, _) =>
|
|
{
|
|
if (ReferenceEquals(instrument.Meter, metrics.Meter)
|
|
&& instrument.Name == "mxgateway.alarms.provider_mode")
|
|
{
|
|
capturedMode = measurement;
|
|
}
|
|
});
|
|
listener.Start();
|
|
|
|
metrics.AlarmProviderSwitched(1, 2, AlarmProviderSwitchReason.Failover);
|
|
listener.RecordObservableInstruments();
|
|
|
|
Assert.Equal(2, capturedMode);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Verifies that <see cref="GatewayMetrics.HeartbeatFailed"/> increments
|
|
/// <c>mxgateway.heartbeats.failed</c> without emitting a <c>session_id</c> tag: the tag is
|
|
/// unbounded cardinality (every session mints a new exporter time series), so per-session
|
|
/// attribution is deliberately kept out of the exported counter (SEC-20).
|
|
/// </summary>
|
|
[Fact]
|
|
public void HeartbeatFailed_IncrementsCounterWithoutSessionIdTag()
|
|
{
|
|
using GatewayMetrics metrics = new();
|
|
using MeterListener listener = new();
|
|
|
|
long capturedValue = 0;
|
|
bool sawSessionIdTag = false;
|
|
|
|
listener.InstrumentPublished = (instrument, meterListener) =>
|
|
{
|
|
if (ReferenceEquals(instrument.Meter, metrics.Meter)
|
|
&& instrument.Name == "mxgateway.heartbeats.failed")
|
|
{
|
|
meterListener.EnableMeasurementEvents(instrument);
|
|
}
|
|
};
|
|
listener.SetMeasurementEventCallback<long>(
|
|
(instrument, measurement, tags, _) =>
|
|
{
|
|
if (!ReferenceEquals(instrument.Meter, metrics.Meter)
|
|
|| instrument.Name != "mxgateway.heartbeats.failed")
|
|
{
|
|
return;
|
|
}
|
|
|
|
capturedValue += measurement;
|
|
foreach (KeyValuePair<string, object?> tag in tags)
|
|
{
|
|
if (tag.Key == "session_id")
|
|
{
|
|
sawSessionIdTag = true;
|
|
}
|
|
}
|
|
});
|
|
listener.Start();
|
|
|
|
metrics.HeartbeatFailed("session-1");
|
|
|
|
Assert.Equal(1, capturedValue);
|
|
Assert.False(sawSessionIdTag);
|
|
Assert.Equal(1, metrics.GetSnapshot().HeartbeatFailures);
|
|
}
|
|
|
|
/// <summary>Verifies that removing session events only affects that session.</summary>
|
|
[Fact]
|
|
public void RemoveSessionEvents_RemovesOnlyThatSession()
|
|
{
|
|
using GatewayMetrics metrics = new();
|
|
|
|
metrics.EventReceived("session-1", "OnDataChange");
|
|
metrics.EventReceived("session-2", "OnWriteComplete");
|
|
metrics.RemoveSessionEvents("session-1");
|
|
|
|
GatewayMetricsSnapshot snapshot = metrics.GetSnapshot();
|
|
|
|
Assert.Equal(2, snapshot.EventsReceived);
|
|
Assert.False(snapshot.EventsBySession.ContainsKey("session-1"));
|
|
Assert.Equal(1, snapshot.EventsBySession["session-2"]);
|
|
Assert.Equal(1, snapshot.EventsByFamily["OnDataChange"]);
|
|
Assert.Equal(1, snapshot.EventsByFamily["OnWriteComplete"]);
|
|
}
|
|
}
|