feat(scadabridge): add HTTP/1.1 metrics listener on site nodes (NodeOptions.MetricsPort=8082)

This commit is contained in:
Joseph Doherty
2026-06-01 16:36:59 -04:00
parent 43f5886024
commit bbc9f09268
2 changed files with 14 additions and 0 deletions
@@ -20,4 +20,6 @@ public class NodeOptions
public int RemotingPort { get; set; } = 8081;
/// <summary>Gets or sets the gRPC port for the site stream server.</summary>
public int GrpcPort { get; set; } = 8083;
/// <summary>HTTP/1.1 port serving the Prometheus /metrics scrape endpoint on site nodes.</summary>
public int MetricsPort { get; set; } = 8082;
}