NetEvolve.HealthChecks.Garnet 5.8.0

Prefix Reserved
dotnet add package NetEvolve.HealthChecks.Garnet --version 5.8.0
                    
NuGet\Install-Package NetEvolve.HealthChecks.Garnet -Version 5.8.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="NetEvolve.HealthChecks.Garnet" Version="5.8.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NetEvolve.HealthChecks.Garnet" Version="5.8.0" />
                    
Directory.Packages.props
<PackageReference Include="NetEvolve.HealthChecks.Garnet" />
                    
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 NetEvolve.HealthChecks.Garnet --version 5.8.0
                    
#r "nuget: NetEvolve.HealthChecks.Garnet, 5.8.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.
#:package NetEvolve.HealthChecks.Garnet@5.8.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=NetEvolve.HealthChecks.Garnet&version=5.8.0
                    
Install as a Cake Addin
#tool nuget:?package=NetEvolve.HealthChecks.Garnet&version=5.8.0
                    
Install as a Cake Tool

NetEvolve.HealthChecks.Garnet

NuGet NuGet

This package provides a health check for Microsoft Garnet, based on the Microsoft.Garnet package. The main purpose is to check that the Garnet server is reachable and that the client can connect to it.

💡 This package is available for .NET 8.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.Garnet

Health Check - Garnet Liveness

The health check is a liveness check. It will check that the Garnet server is reachable and that the client can connect to it. If the server needs longer than the configured timeout to respond, the health check will return Degraded. If the server is not reachable, the health check will return Unhealthy.

Usage

After adding the package, you need to import the namespace NetEvolve.HealthChecks.Garnet and add the health check to the service collection.

using NetEvolve.HealthChecks.Garnet;

Therefore, you can use two different approaches. In both approaches you have to provide a name for the health check.

Parameters

  • name: The name of the health check. The name is used to identify the configuration object. It is required and must be unique within the application.
  • options: The configuration options for the health check. If you don't provide any options, the health check will use the configuration based approach.
  • tags: The tags for the health check. The tags garnet and cache are always used as default and combined with the user input. You can provide additional tags to group or filter the health checks.

Variant 1: Configuration based

The first one is to use the configuration based approach. Therefore, you have to add the configuration section HealthChecks:Garnet to your appsettings.json file.

var builder = services.AddHealthChecks();

builder.AddGarnet("<name>");

The configuration looks like this:

{
  ..., // other configuration
  "HealthChecks": {
    "Garnet": {
      "<name>": {
        "ConnectionString": "<connection string>", // required
        "Mode": "<producer handle mode>", // optional, Default ServiceProvider
        "Timeout": "<timeout>" // optional, default is 100 milliseconds
      }
    }
  }
}

Variant 2: Builder based

The second approach is to use the builder based approach. This approach is recommended if you only have one Garnet instance to check or dynamic programmatic values.

var builder = services.AddHealthChecks();

builder.AddGarnet("<name>", options =>
{
    options.ConnectionString = "<connection string>"; // required
    options.Timeout = "<timeout>"; // optional, default is 100 milliseconds
    ... // other configuration
});

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

var builder = services.AddHealthChecks();

builder.AddGarnet("<name>", options => ..., "garnet");

License

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

Product Compatible and additional computed target framework versions.
.NET 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 is compatible.  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.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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
5.8.0 361 12/8/2025