568735a41e
Task 13. SiteEventLogger's XML doc said 'Not replicated to standby. On failover, the new active node starts a fresh log.' That is now false and was the exact behaviour Phase 1 set out to fix. OperationTrackingOptions.ConnectionString and SiteEventLogOptions.DatabasePath marked MIGRATION-ONLY: nothing reads them but SiteLocalDbLegacyMigrator, and they are safe to delete from a config once a node has migrated. ScadaBridge CLAUDE.md gains a consolidated-site-database entry covering the GUID/opaque-token contract change, the migration-only keys, the incidental CWD-outside-the-volume data-loss fix, the fail-closed default-OFF replication posture, and the fact that ZbTelemetryOptions.Meters is a silent allowlist. scadaproj CLAUDE.md's LocalDb row goes from 'no app adoption yet' to the honest current state, per the component-status-honesty convention: ScadaBridge Phase 1 only, on an UNMERGED branch, replication live-proven on the rig's site-a pair ONLY, default-OFF everywhere else, Phase 2 not started, no other app adopted, no production deployment replicating. Claude-Session: https://claude.ai/code/session_01BL2Vu1ESDQ9SCN4gVKkdts
25 lines
1.0 KiB
C#
25 lines
1.0 KiB
C#
namespace ZB.MOM.WW.ScadaBridge.SiteRuntime.Tracking;
|
|
|
|
/// <summary>
|
|
/// Options for <see cref="OperationTrackingStore"/> — site-local cached-call
|
|
/// tracking SQLite store.
|
|
/// </summary>
|
|
public class OperationTrackingOptions
|
|
{
|
|
/// <summary>
|
|
/// MIGRATION-ONLY as of LocalDb Phase 1. <see cref="OperationTrackingStore"/> no longer
|
|
/// reads this: the tracking table lives in the consolidated site database at
|
|
/// <c>LocalDb:Path</c>. The only remaining consumer is
|
|
/// <c>SiteLocalDbLegacyMigrator</c>, which uses it to locate a pre-Phase-1
|
|
/// <c>site-tracking.db</c> and copy it in once. Safe to delete from a config once that
|
|
/// node's migration has run.
|
|
/// </summary>
|
|
public string ConnectionString { get; set; } = "Data Source=site-tracking.db";
|
|
|
|
/// <summary>
|
|
/// Retention window for terminal tracking rows. The default purge cadence
|
|
/// (driven by the host) deletes terminal rows older than this many days.
|
|
/// </summary>
|
|
public int RetentionDays { get; set; } = 7;
|
|
}
|