Fix nome servizi healthcheck

This commit is contained in:
Samuele Locatelli
2024-05-09 13:10:06 +02:00
parent 74b08ceefc
commit e534651bf3
7 changed files with 9 additions and 10 deletions
+2 -2
View File
@@ -77,12 +77,12 @@ builder.Services.AddHealthChecks()
builder.Services
.AddHealthChecksUI(s =>
{
s.AddHealthCheckEndpoint("GWMS_Services", "health");
s.AddHealthCheckEndpoint("WDC.API_Services", "health");
s.SetEvaluationTimeInSeconds(60);
//s.SetEvaluationTimeInSeconds(60);
s.SetMinimumSecondsBetweenFailureNotifications(120);
s.SetApiMaxActiveRequests(5);
s.SetHeaderText("GWMS Health Check Status");
s.SetHeaderText("WDC.API Health Check Status");
})
.AddInMemoryStorage();