7 references to HealthChecks
blazor-gateway (7)
BlazorGateway.cs (7)
38
if (options.
HealthChecks
.Enabled)
41
.AddCheck<LivenessHealthCheck>("self", tags: [options.
HealthChecks
.LivenessTag]);
92
if (app.Environment.IsDevelopment() && options.
HealthChecks
.Enabled)
94
app.MapHealthChecks(options.
HealthChecks
.Path);
97
if (options.
HealthChecks
.Enabled)
99
app.MapHealthChecks(options.
HealthChecks
.LivenessPath, new HealthCheckOptions
101
Predicate = r => r.Tags.Contains(options.
HealthChecks
.LivenessTag)