From af24e2a01dfd1a15b1fee58906779177f11b4e5c Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Wed, 27 Dec 2023 11:50:51 +0100 Subject: [PATCH] Aggiunta conf x healthchecks-ui --- MagMan.UI/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MagMan.UI/Program.cs b/MagMan.UI/Program.cs index fd0479c..0f879ea 100644 --- a/MagMan.UI/Program.cs +++ b/MagMan.UI/Program.cs @@ -61,12 +61,12 @@ builder.Services.AddHealthChecks() builder.Services.AddHealthChecksUI(s => { - s.AddHealthCheckEndpoint("GWMS_Services", "health"); + s.AddHealthCheckEndpoint("MagMan_Services", "health"); s.SetEvaluationTimeInSeconds(60); //s.SetEvaluationTimeInSeconds(60); s.SetMinimumSecondsBetweenFailureNotifications(120); s.SetApiMaxActiveRequests(5); - s.SetHeaderText("GWMS Health Check Status"); + s.SetHeaderText("MagMan Health Check Status"); }) .AddInMemoryStorage();