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();