From a0e036fb6bc09019e5638215b491bd45ffde421d Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Sun, 22 Mar 2026 15:20:48 -0400 Subject: [PATCH] chore(lmxproxy): switch health probe tag to DevPlatform.Scheduler.ScanTime Co-Authored-By: Claude Opus 4.6 (1M context) --- .../Configuration/LmxProxyConfiguration.cs | 4 ++-- .../Health/DetailedHealthCheckService.cs | 2 +- lmxproxy/src/ZB.MOM.WW.LmxProxy.Host/appsettings.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lmxproxy/src/ZB.MOM.WW.LmxProxy.Host/Configuration/LmxProxyConfiguration.cs b/lmxproxy/src/ZB.MOM.WW.LmxProxy.Host/Configuration/LmxProxyConfiguration.cs index f74a2e1..71b7f09 100644 --- a/lmxproxy/src/ZB.MOM.WW.LmxProxy.Host/Configuration/LmxProxyConfiguration.cs +++ b/lmxproxy/src/ZB.MOM.WW.LmxProxy.Host/Configuration/LmxProxyConfiguration.cs @@ -31,8 +31,8 @@ namespace ZB.MOM.WW.LmxProxy.Host.Configuration /// Health check / probe configuration. public class HealthCheckConfiguration { - /// Tag address to probe for connection liveness. Default: DevAppEngine.Scheduler.ScanTime. - public string TestTagAddress { get; set; } = "DevAppEngine.Scheduler.ScanTime"; + /// Tag address to probe for connection liveness. Default: DevPlatform.Scheduler.ScanTime. + public string TestTagAddress { get; set; } = "DevPlatform.Scheduler.ScanTime"; /// Probe timeout in milliseconds. Default: 5000. public int ProbeTimeoutMs { get; set; } = 5000; diff --git a/lmxproxy/src/ZB.MOM.WW.LmxProxy.Host/Health/DetailedHealthCheckService.cs b/lmxproxy/src/ZB.MOM.WW.LmxProxy.Host/Health/DetailedHealthCheckService.cs index d177b24..36eb342 100644 --- a/lmxproxy/src/ZB.MOM.WW.LmxProxy.Host/Health/DetailedHealthCheckService.cs +++ b/lmxproxy/src/ZB.MOM.WW.LmxProxy.Host/Health/DetailedHealthCheckService.cs @@ -20,7 +20,7 @@ namespace ZB.MOM.WW.LmxProxy.Host.Health public DetailedHealthCheckService( IScadaClient scadaClient, - string testTagAddress = "DevAppEngine.Scheduler.ScanTime") + string testTagAddress = "DevPlatform.Scheduler.ScanTime") { _scadaClient = scadaClient; _testTagAddress = testTagAddress; diff --git a/lmxproxy/src/ZB.MOM.WW.LmxProxy.Host/appsettings.json b/lmxproxy/src/ZB.MOM.WW.LmxProxy.Host/appsettings.json index 2eff7e5..267943a 100644 --- a/lmxproxy/src/ZB.MOM.WW.LmxProxy.Host/appsettings.json +++ b/lmxproxy/src/ZB.MOM.WW.LmxProxy.Host/appsettings.json @@ -33,7 +33,7 @@ }, "HealthCheck": { - "TestTagAddress": "DevAppEngine.Scheduler.ScanTime", + "TestTagAddress": "DevPlatform.Scheduler.ScanTime", "ProbeTimeoutMs": 5000, "MaxConsecutiveTransportFailures": 3, "DegradedProbeIntervalMs": 30000