Files
scadalink-design/src/ScadaLink.Commons/Messages/DebugView/DebugSnapshotRequest.cs
Joseph Doherty 9c6e3c2e56 feat: add CLI debug snapshot command for one-shot instance state inspection
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.
2026-03-18 07:16:22 -04:00

6 lines
143 B
C#

namespace ScadaLink.Commons.Messages.DebugView;
public record DebugSnapshotRequest(
string InstanceUniqueName,
string CorrelationId);