GraphHealthChecks 2.0.1

dotnet add package GraphHealthChecks --version 2.0.1
NuGet\Install-Package GraphHealthChecks -Version 2.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GraphHealthChecks" Version="2.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GraphHealthChecks --version 2.0.1
#r "nuget: GraphHealthChecks, 2.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install GraphHealthChecks as a Cake Addin
#addin nuget:?package=GraphHealthChecks&version=2.0.1

// Install GraphHealthChecks as a Cake Tool
#tool nuget:?package=GraphHealthChecks&version=2.0.1

GraphHealthChecks

NuGet Version NuGet Downloads License: MIT

Graph Health Checks for HotChocolate.

The purpose of this middleware is to provide feedback in regards to the health of the schema.

Nuget

Note

There appears to be a compatibility issue for projects targeting .NET 7 and assembly Assembly Microsoft.Extensions.Hosting, Version=7.0.0.0 and more specifically OptionsBuilderExtensions.ValidateOnStart resulting in error:

The call is ambiguous between the following methods or properties: 'Microsoft.Extensions.DependencyInjection.OptionsBuilderExtensions.ValidateOnStart<TOptions>(Microsoft.Extensions.Options.OptionsBuilder<TOptions>)' and 'Microsoft.Extensions.DependencyInjection.OptionsBuilderExtensions.ValidateOnStart<TOptions>(Microsoft.Extensions.Options.OptionsBuilder<TOptions>)'

Until resolved please consider using a previous version of the package targeting .NET 7.

Usage

Locate the services registration and append one of:

  • .AddGraphHealthWithNoLogger - use when no logging is required
  • .AddGraphHealthWithILogger - use when the ILogger provider is available
  • .AddGraphHealthWithILoggerFactory - use when the ILoggerFactory provider is available

⚠️ Bear in mind that IHealthChecksBuilder needs to be appended before any of the aforementioned.

ex.

// Startup.cs
public void ConfigureServices(IServiceCollection services)
{
    // ...
    services
        .AddHealthChecks()
        .AddGraphHealthWithILogger();
    // ...
}

📝 If further customization is required, consider wiring up any of the factories manually or use the GraphHealthCheck class itself as required.

If separate schemas are present, multiple registrations can be done for each schema.

ex.

// Startup.cs
public void ConfigureServices(IServiceCollection services)
{
    // ...
    services
        .AddHealthChecks()
        .AddGraphHealthWithILogger(healthName: "health1", schemaName: "schema1")
        .AddGraphHealthWithILogger(healthName: "health2", schemaName: "schema2");
    // ...
}
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.1 6,640 11/22/2023
2.0.0 112 11/21/2023
1.1.0 6,003 8/26/2023
1.0.2 1,630 7/31/2023
1.0.1 4,688 5/29/2023
1.0.0 2,031 5/8/2023