ALSI.HealthCheck 1.1.0

dotnet add package ALSI.HealthCheck --version 1.1.0
                    
NuGet\Install-Package ALSI.HealthCheck -Version 1.1.0
                    
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="ALSI.HealthCheck" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ALSI.HealthCheck" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="ALSI.HealthCheck" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ALSI.HealthCheck --version 1.1.0
                    
#r "nuget: ALSI.HealthCheck, 1.1.0"
                    
#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.
#addin nuget:?package=ALSI.HealthCheck&version=1.1.0
                    
Install ALSI.HealthCheck as a Cake Addin
#tool nuget:?package=ALSI.HealthCheck&version=1.1.0
                    
Install ALSI.HealthCheck as a Cake Tool

NuGet Version Build Status Downloads codecov

ALSI.HealthCheck is a lightweight, modular health check library for .NET applications. It provides a fluent, builder-based API to register health checks for external APIs, databases, and custom background services. The library includes a hosted background service that exposes a configurable HTTP endpoint to collate and report health check results. Out-of-the-box, it supports multiple response formats via context serializers (JSON, plain text, etc.) and is fully configurable using dependency injection and strongly typed options.

Features

  • Modular Health Checks: Easily register checks for APIs, database connections, and custom services.
  • Fluent Builder API: Use a fluent builder pattern to configure and combine multiple health checks.
  • Hosted Service: A background service (HostedHealthChecker) listens on an HTTP endpoint and collates health check results.
  • Flexible Serialisation: Supports multiple output formats via implementations of the IContextSerializer interface (e.g. JSON and plain text).
  • Strong Configuration: Configure options via IOptions<T> using the HealthCheckOptions record.
  • Extensibility: Easily add custom health checks, providers, and serializers.

Installation

Install the package via NuGet:

dotnet add package ALSI.HealthCheck

Alternatively, search for ALSI.HealthCheck in your NuGet Package Manager.

Configuration

The health check endpoint is configured using the HealthCheckOptions record. By default, the configuration is:

  • Hostname: "*" (binds to all network interfaces)
  • Port: 8080
  • UrlPath: "/health" (the base path for health checks)

You can override these defaults via your configuration file (e.g., appsettings.json):

{
  "HealthCheck": {
    "Hostname": "localhost",
    "Port": 8081,
    "UrlPath": "/health"
  }
}

And register them in your DI container:

builder.Services.Configure<HealthCheckOptions>(builder.Configuration.GetSection("HealthCheck"));

Usage

Registering Health Checks

Use the extension methods provided by the library to register your health checks. For example, in your Program.cs:

using ALSI.HealthCheck;
using ALSI.HealthCheck.Context;

var builder = Host.CreateApplicationBuilder(args);

// Register your health checks using the fluent builder API.
builder.Services.AddHealthChecker(healthBuilder =>
    healthBuilder
        .AddCheck("Basic Flip Flop", ctx =>
            Task.FromResult(/* some condition */ HealthStatus.Healthy))
        .AddCheck("AlwaysHealthy", _ =>
            Task.FromResult(HealthStatus.Healthy))
        .AddMonitoredService<YourMonitoredService>()
        .AddMonitoredDatabaseConnection(
            "DatabaseCheck",
            () => new YourDbConnection(),  // Your connection factory
            "SELECT 1;"
        )
        .AddMonitoredApiRoute(
            "ApiCheck",
            () => new HttpClient(),
            "http://example.com/api/health",
            httpMethod: HttpMethod.Get,
            expectedStatusCode: HttpStatusCode.OK
        )
);

// Register the hosted health checker using your preferred context serializer.
builder.Services.AddHostedService<HostedHealthChecker<JsonContextSerializer>>();

var host = builder.Build();
host.Run();

Hosted Health Checker

The HostedHealthChecker<TContextSerializer> is a background service that:

  • Listens on an HTTP endpoint (configured by HealthCheckOptions).
  • Executes all registered health checks.
  • Collates their statuses and serializes the results using the specified serializer (e.g. JsonContextSerializer or PlainContextSerializer).

When a GET request is made to the health check URL (e.g., http://localhost:8081/health), the service runs the checks and returns a response similar to:

{
  "Status": "Healthy",
  "Since": "00:00:06.8265131",
  "Results": {
    "Basic Flip Flop": "Healthy",
    "AlwaysHealthy": "Healthy",
    "DatabaseCheck": "Healthy",
    "ApiCheck": "Healthy"
  }
}

Context Serializers

The package includes implementations of IContextSerializer:

  • JsonContextSerializer: Returns detailed structured JSON output.
  • PlainContextSerializer: Returns a simple plain text response.

You can also implement your own serializer by implementing IContextSerializer if you require a custom output format.

Extensibility

ALSI.HealthCheck is designed to be extensible:

  • Custom Health Checks: Define your own health check functions using the signature Func<HealthCheckContext, Task<HealthStatus>> and register them via the builder.
  • Custom Providers: Add health checks for any dependency by creating a factory method that returns a HealthCheck.
  • Custom Serializers: Implement the IContextSerializer interface to create a custom serialization strategy.

Running and Monitoring

After configuring your health checks and registering the hosted service, run your host application. The health check endpoint will be available at the URL formed by combining the Hostname, Port, and UrlPath (e.g., http://localhost:8081/health). You can query this endpoint using a web browser or tools like curl or Postman.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Contributing

Contributions are welcome! If you have suggestions or bug fixes, please submit a pull request or open an issue on GitHub.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
1.1.0 105 2/26/2025
1.0.0 96 2/26/2025
1.0.0-rc.9 57 2/26/2025
0.0.0-rc.7 67 2/26/2025