7b0b9c7365
Solution + 23 src projects + 26 test projects renamed; folders, csproj, namespaces, and ScadaLinkDbContext/ScadaBridgeDbContext class updated. ActorSystem "scadalink" → "scadabridge", Akka seed-node URLs migrated. SQL roles/logins, LDAP domains, CLI command name, and CLI config dir (~/.scadalink → ~/.scadabridge) also renamed. Build green; 5 Host.Tests fail awaiting SQL login rename in next commit. Pre-existing StaleTagMonitor timing flakes unchanged. Rename script committed at tools/rename-to-scadabridge.sh.
29 lines
776 B
C#
29 lines
776 B
C#
namespace ZB.MOM.WW.ScadaBridge.Commons.Messages.RemoteQuery;
|
|
|
|
/// <summary>
|
|
/// A single event log entry returned from a site query.
|
|
/// </summary>
|
|
public record EventLogEntry(
|
|
long Id,
|
|
DateTimeOffset Timestamp,
|
|
string EventType,
|
|
string Severity,
|
|
string? InstanceId,
|
|
string Source,
|
|
string Message,
|
|
string? Details);
|
|
|
|
/// <summary>
|
|
/// Response containing paginated event log entries from a site.
|
|
/// Uses keyset pagination: ContinuationToken is the last event ID in the result set.
|
|
/// </summary>
|
|
public record EventLogQueryResponse(
|
|
string CorrelationId,
|
|
string SiteId,
|
|
IReadOnlyList<EventLogEntry> Entries,
|
|
long? ContinuationToken,
|
|
bool HasMore,
|
|
bool Success,
|
|
string? ErrorMessage,
|
|
DateTimeOffset Timestamp);
|