Adds `debug snapshot --id <int>` to query a running instance's current attribute values and alarm states without the subscribe/stream overhead of the debug view. Routes through ManagementActor → CommunicationService → site DeploymentManager → InstanceActor using the existing remote query pattern.
6 lines
143 B
C#
6 lines
143 B
C#
namespace ScadaLink.Commons.Messages.DebugView;
|
|
|
|
public record DebugSnapshotRequest(
|
|
string InstanceUniqueName,
|
|
string CorrelationId);
|