HealthChecks.OpenIdConnectServer is the health check package for OpenIdConnect servers
$ dotnet add package AspNetCore.HealthChecks.OpenIdConnectServerThis health check verifies that an OpenID Connect server (like Duende IdentityServer, Microsoft Entra ID, etc.) is responding. Internally, it downloads the discovery document and checks existence of document's properties.
Use the following snippet to register an OpenID Connect server accessible at https://myoidcserver.com.
public void ConfigureServices(IServiceCollection services)
{
services
.AddHealthChecks()
.AddOpenIdConnectServer(oidcSvrUri: new Uri("https://myoidcserver.com"));
}
Use the following snippet to additionally specify a different discovery endpoint path. The default value if not specified is .well-known/openid-configuration.
public void ConfigureServices(IServiceCollection services)
{
services
.AddHealthChecks()
.AddOpenIdConnectServer(
oidcSvrUri: new Uri("https://myoidcserver.com"),
discoverConfigurationSegment: "discovery/endpoint");
}
You can additionally specify the following parameters:
name: The health check name. Default if not specified is oidcserver.failureStatus: The HealthStatus that should be reported when the health check fails. Default is HealthStatus.Unhealthy.tags: A list of tags that can be used to filter sets of health checks.timeout: A System.TimeSpan representing the timeout of the check.