7 references to HealthChecks
blazor-gateway (7)
BlazorGateway.cs (7)
34
if (options.
HealthChecks
.Enabled)
37
.AddCheck<LivenessHealthCheck>("self", tags: [options.
HealthChecks
.LivenessTag]);
88
if (app.Environment.IsDevelopment() && options.
HealthChecks
.Enabled)
90
app.MapHealthChecks(options.
HealthChecks
.Path);
93
if (options.
HealthChecks
.Enabled)
95
app.MapHealthChecks(options.
HealthChecks
.LivenessPath, new HealthCheckOptions
97
Predicate = r => r.Tags.Contains(options.
HealthChecks
.LivenessTag)