chore(lmxproxy): switch health probe tag to DevPlatform.Scheduler.ScanTime

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Joseph Doherty
2026-03-22 15:20:48 -04:00
parent ecf4b434c2
commit a0e036fb6b
3 changed files with 4 additions and 4 deletions

View File

@@ -31,8 +31,8 @@ namespace ZB.MOM.WW.LmxProxy.Host.Configuration
/// <summary>Health check / probe configuration.</summary>
public class HealthCheckConfiguration
{
/// <summary>Tag address to probe for connection liveness. Default: DevAppEngine.Scheduler.ScanTime.</summary>
public string TestTagAddress { get; set; } = "DevAppEngine.Scheduler.ScanTime";
/// <summary>Tag address to probe for connection liveness. Default: DevPlatform.Scheduler.ScanTime.</summary>
public string TestTagAddress { get; set; } = "DevPlatform.Scheduler.ScanTime";
/// <summary>Probe timeout in milliseconds. Default: 5000.</summary>
public int ProbeTimeoutMs { get; set; } = 5000;

View File

@@ -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;

View File

@@ -33,7 +33,7 @@
},
"HealthCheck": {
"TestTagAddress": "DevAppEngine.Scheduler.ScanTime",
"TestTagAddress": "DevPlatform.Scheduler.ScanTime",
"ProbeTimeoutMs": 5000,
"MaxConsecutiveTransportFailures": 3,
"DegradedProbeIntervalMs": 30000