From ece075e2f3efc16f20dd040da4dcee8819025e85 Mon Sep 17 00:00:00 2001 From: Rajesh Rajendran Date: Sun, 9 Apr 2023 15:43:38 +0200 Subject: [PATCH] fix(ee): chalice health check (#1142) Signed-off-by: rjshrjndrn --- ee/api/chalicelib/core/health.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ee/api/chalicelib/core/health.py b/ee/api/chalicelib/core/health.py index 70ecdd674..9b47720ee 100644 --- a/ee/api/chalicelib/core/health.py +++ b/ee/api/chalicelib/core/health.py @@ -15,9 +15,9 @@ def app_connection_string(name, port, path): HEALTH_ENDPOINTS = { - "alerts": app_connection_string("alerts-openreplay", 8888, "metrics"), + "alerts": app_connection_string("alerts-openreplay", 8888, "health"), "assets": app_connection_string("assets-openreplay", 8888, "metrics"), - "assist": app_connection_string("assist-openreplay", 8888, "metrics"), + "assist": app_connection_string("assist-openreplay", 8888, "health"), "chalice": app_connection_string("chalice-openreplay", 8888, "metrics"), "db": app_connection_string("db-openreplay", 8888, "metrics"), "ender": app_connection_string("ender-openreplay", 8888, "metrics"),