Package reference page maintained from the source documentation in src/HealthChecks.OpenIdConnectServer.

OpenID Connect Server Health Check

This 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.

Example Usage

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: