NetEvolve.HealthChecks.Dapr
5.5.2
Prefix Reserved
See the version list below for details.
dotnet add package NetEvolve.HealthChecks.Dapr --version 5.5.2
NuGet\Install-Package NetEvolve.HealthChecks.Dapr -Version 5.5.2
<PackageReference Include="NetEvolve.HealthChecks.Dapr" Version="5.5.2" />
<PackageVersion Include="NetEvolve.HealthChecks.Dapr" Version="5.5.2" />
<PackageReference Include="NetEvolve.HealthChecks.Dapr" />
paket add NetEvolve.HealthChecks.Dapr --version 5.5.2
#r "nuget: NetEvolve.HealthChecks.Dapr, 5.5.2"
#:package NetEvolve.HealthChecks.Dapr@5.5.2
#addin nuget:?package=NetEvolve.HealthChecks.Dapr&version=5.5.2
#tool nuget:?package=NetEvolve.HealthChecks.Dapr&version=5.5.2
NetEvolve.HealthChecks.Dapr
This package provides a health check for Dapr, based on the Dapr.Client package. The main purpose is to check if the Dapr sidecar is available and responding to requests.
💡 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 sidecar is available and responding to requests.
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.
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 tagdapris 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 want to configure the health check through your application settings.
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 want to configure the health check programmatically with dynamic 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", "sidecar");
License
This project is licensed under the MIT License - see the LICENSE file for details.
| Product | Versions 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. |
-
net10.0
- Dapr.Client (>= 1.16.1)
- NetEvolve.Extensions.Tasks (>= 2.0.8)
-
net8.0
- Dapr.Client (>= 1.16.1)
- Microsoft.Extensions.Http (>= 10.0.0)
- NetEvolve.Extensions.Tasks (>= 2.0.8)
-
net9.0
- Dapr.Client (>= 1.16.1)
- NetEvolve.Extensions.Tasks (>= 2.0.8)
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.13.51 | 0 | 3/16/2026 |
| 5.13.1 | 88 | 3/3/2026 |
| 5.11.2 | 128 | 1/1/2026 |
| 5.10.32 | 121 | 12/29/2025 |
| 5.9.5 | 260 | 12/15/2025 |
| 5.8.0 | 467 | 12/8/2025 |
| 5.7.10 | 395 | 12/8/2025 |
| 5.5.2 | 165 | 11/29/2025 |
| 5.0.0 | 446 | 11/20/2025 |
| 4.20.61 | 186 | 9/27/2025 |
| 4.15.1 | 396 | 6/13/2025 |
| 4.14.3 | 388 | 6/9/2025 |
| 4.12.3 | 268 | 6/5/2025 |
| 4.3.0 | 264 | 5/26/2025 |
| 4.1.158 | 308 | 5/22/2025 |
| 4.1.131 | 318 | 5/1/2025 |
| 4.1.110 | 296 | 4/8/2025 |
| 4.1.74 | 252 | 2/19/2025 |
| 4.1.65 | 246 | 1/29/2025 |
| 4.1.23 | 251 | 12/19/2024 |