NetEvolve.HealthChecks.Dapr 4.15.1

dotnet add package NetEvolve.HealthChecks.Dapr --version 4.15.1
                    
NuGet\Install-Package NetEvolve.HealthChecks.Dapr -Version 4.15.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="NetEvolve.HealthChecks.Dapr" Version="4.15.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NetEvolve.HealthChecks.Dapr" Version="4.15.1" />
                    
Directory.Packages.props
<PackageReference Include="NetEvolve.HealthChecks.Dapr" />
                    
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.Dapr --version 4.15.1
                    
#r "nuget: NetEvolve.HealthChecks.Dapr, 4.15.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.
#:package NetEvolve.HealthChecks.Dapr@4.15.1
                    
#: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.Dapr&version=4.15.1
                    
Install as a Cake Addin
#tool nuget:?package=NetEvolve.HealthChecks.Dapr&version=4.15.1
                    
Install as a Cake Tool

NetEvolve.HealthChecks.Dapr

NuGet NuGet

This package provides a health check for Dapr, based on the Dapr.Client package. The main purpose is to check if the Dapr is available and if the sidecar is available.

💡 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.Dapr

Health Check - Dapr Liveness

The health check is a liveness check. It checks if the Dapr is available and if the database is online. If the query needs longer than the configured timeout, the health check will return Degraded. If the query fails, for whatever reason, the health check will return Unhealthy.

Usage

After adding the package, you need to import the namespace and add the health check to the health check builder.

using NetEvolve.HealthChecks.Dapr;

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

Parameters

  • 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 Dapr and database 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. This approach is recommended if you have multiple Dapr instances to check.

var builder = services.AddHealthChecks();

builder.AddDapr();

The configuration looks like this:

{
  ..., // other configuration
  "HealthChecks": {
    "DaprSidecar": {
      "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 have only one Dapr instance to check or dynamic programmatic values.

var builder = services.AddHealthChecks();

builder.AddDapr(options =>
{
    options.Timeout = "<timeout>"; // optional, default is 100 milliseconds
});

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

var builder = services.AddHealthChecks();

builder.AddDapr(options => ..., "Dapr");
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 was computed.  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
4.15.1 251 6/13/2025
4.14.3 249 6/9/2025
4.12.3 150 6/5/2025
4.3.0 147 5/26/2025
4.1.158 162 5/22/2025
4.1.131 180 5/1/2025
4.1.110 177 4/8/2025
4.1.74 136 2/19/2025
4.1.65 122 1/29/2025
4.1.23 135 12/19/2024
4.1.0 135 12/16/2024
4.0.67 129 11/29/2024
4.0.1 135 11/4/2024
4.0.0 123 11/3/2024
3.4.139 147 9/12/2024
3.4.112 137 8/26/2024
3.4.52 141 6/24/2024
3.4.20 148 6/4/2024
3.4.0 136 5/23/2024
3.3.0 158 5/22/2024
3.2.52 150 5/22/2024
3.2.31 147 5/21/2024
3.2.9 163 4/8/2024
3.2.0 139 4/4/2024
3.1.10 138 2/18/2024
3.1.8 134 2/16/2024
3.1.0 149 2/15/2024