From eb51f6aedb90109f49c871dc65f868a8b5a13e29 Mon Sep 17 00:00:00 2001 From: "courtmanr@gmail.com" Date: Wed, 28 May 2025 00:39:02 +0100 Subject: [PATCH] fix: correct health endpoint method call to getEnhancedAlertStats --- server/state.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/state.js b/server/state.js index 71c671947..6819e7e47 100644 --- a/server/state.js +++ b/server/state.js @@ -371,7 +371,7 @@ function getHealthSummary() { healthy: healthyConnections, total: totalConnections }, - alerts: alertManager.getAlertStats(), + alerts: alertManager.getEnhancedAlertStats(), lastUpdate: state.stats.lastUpdated }; }