NetEvolve.HealthChecks 3.2.9

dotnet add package NetEvolve.HealthChecks --version 3.2.9
NuGet\Install-Package NetEvolve.HealthChecks -Version 3.2.9
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="NetEvolve.HealthChecks" Version="3.2.9" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NetEvolve.HealthChecks --version 3.2.9
#r "nuget: NetEvolve.HealthChecks, 3.2.9"
#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 NetEvolve.HealthChecks as a Cake Addin
#addin nuget:?package=NetEvolve.HealthChecks&version=3.2.9

// Install NetEvolve.HealthChecks as a Cake Tool
#tool nuget:?package=NetEvolve.HealthChecks&version=3.2.9

NetEvolve.HealthChecks

Nuget Nuget

This package contains additional health checks for the Microsoft.Extensions.Diagnostics.HealthChecks package. Primarily for testing the healthiness of the own application, like application service is started or stopped.

💡 This package is available for .NET 6.0 and later.

Installation

To use this package, you need to add the package to your project. You can do this by using the NuGet package manager or by using the dotnet CLI.

dotnet add package NetEvolve.HealthChecks

Health Check - Application Healthy

This health check is providing always a Healthy status. It can be used to check if the application is running, like a ping.

Usage

This healthcheck does not require any configuration, it will automatically registered as ApplicationHealthy health check.

var builder = services.AddHealthChecks();
builder.AddApplicationHealthy();

Health Check - Application Ready

This health check is used to check the readiness of the application. It returns Unhealthy until the IHostApplicationLifetime triggers the ApplicationStarted event, then it returns Healthy. It returns Healthy until the IHostApplicationLifetime triggers the ApplicationStopping event, after which it returns Unhealthy.

Usage

This healthcheck does not require any configuration, it will automatically registered as ApplicationReady health check.

var builder = services.AddHealthChecks();
builder.AddApplicationReady()

💡 You can always provide tags to all health checks, for grouping or filtering.

var builder = services.AddHealthChecks();
    builder.AddApplicationReady("readiness");
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 is compatible.  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
3.2.9 58 4/8/2024
3.2.0 61 4/4/2024
3.1.10 90 2/18/2024
3.1.8 78 2/16/2024
3.1.0 85 2/15/2024
3.0.0 84 2/14/2024
2.1.42 138 1/4/2024
2.1.31 92 1/3/2024
2.1.10 73 12/29/2023
2.1.2 136 11/27/2023
2.0.65 91 11/23/2023
2.0.64 87 11/21/2023
2.0.52 105 11/21/2023
2.0.51 85 11/20/2023
2.0.42 72 11/17/2023
2.0.0 113 10/9/2023
1.1.2 133 9/11/2023
1.1.1 115 9/11/2023
1.0.6 125 9/1/2023
1.0.0 104 8/31/2023