662f3f9f5c
v2-ci / build (push) Failing after 32s
v2-ci / unit-tests (tests/Core/ZB.MOM.WW.OtOpcUa.Cluster.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.ControlPlane.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.OpcUaServer.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.Runtime.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.Security.Tests) (push) Has been skipped
v2-ci / integration (tests/Server/ZB.MOM.WW.OtOpcUa.Host.IntegrationTests) (push) Has been skipped
v2-ci / integration (tests/Server/ZB.MOM.WW.OtOpcUa.OpcUaServer.IntegrationTests) (push) Has been skipped
- Topic-name drift fix: DriverHealthChanged.TopicName and DriverControlTopic.Name now live on the message contracts in Commons. AkkaDriverHealthPublisher, DriverStatusSignalRBridge, DriverHostActor, and AdminOperationsActor all delegate to the single constant so a rename can't silently desynchronise publisher and subscriber. - DriverStatusPanel._opResultClearTimer switched from System.Timers.Timer to System.Threading.Timer + awaited DisposeAsync. Prevents an in-flight 8s clear-callback from invoking StateHasChanged on a component whose hub has already been released. - PublishHealthSnapshot deduplicates against the last published (state, lastSuccess, lastError, errorCount) fingerprint. The 30s heartbeat no longer floods the SignalR layer with identical Healthy snapshots — newly-joined clients still warm up via the snapshot store on JoinDriver.
32 lines
1.5 KiB
C#
32 lines
1.5 KiB
C#
namespace ZB.MOM.WW.OtOpcUa.Commons.Messages.Drivers;
|
|
|
|
/// <summary>
|
|
/// Snapshot of a single driver instance's health, published to the
|
|
/// <c>driver-health</c> DistributedPubSub topic whenever a driver actor
|
|
/// transitions state or logs an error. Consumed by
|
|
/// <c>DriverStatusSignalRBridge</c> in the AdminUI for live status push.
|
|
/// </summary>
|
|
/// <param name="ClusterId">Cluster this driver belongs to.</param>
|
|
/// <param name="DriverInstanceId">Globally-unique driver instance ID.</param>
|
|
/// <param name="State">DriverState enum as string (Healthy, Faulted, Reconnecting, etc.).</param>
|
|
/// <param name="LastSuccessfulReadUtc">Most recent successful equipment read; null if never.</param>
|
|
/// <param name="LastError">Latest error message; null when none.</param>
|
|
/// <param name="ErrorCount5Min">Number of state-transitions into Faulted in the last 5 minutes.</param>
|
|
/// <param name="PublishedUtc">Timestamp this snapshot was published.</param>
|
|
public sealed record DriverHealthChanged(
|
|
string ClusterId,
|
|
string DriverInstanceId,
|
|
string State,
|
|
DateTime? LastSuccessfulReadUtc,
|
|
string? LastError,
|
|
int ErrorCount5Min,
|
|
DateTime PublishedUtc)
|
|
{
|
|
/// <summary>
|
|
/// DPS topic name. Both the runtime <c>AkkaDriverHealthPublisher</c> and the AdminUI
|
|
/// <c>DriverStatusSignalRBridge</c> reference this single constant so renames can't
|
|
/// silently desynchronise publisher and subscriber.
|
|
/// </summary>
|
|
public const string TopicName = "driver-health";
|
|
}
|