NetEvolve.HealthChecks.DB2
5.8.0
Prefix Reserved
See the version list below for details.
dotnet add package NetEvolve.HealthChecks.DB2 --version 5.8.0
NuGet\Install-Package NetEvolve.HealthChecks.DB2 -Version 5.8.0
<PackageReference Include="NetEvolve.HealthChecks.DB2" Version="5.8.0" />
<PackageVersion Include="NetEvolve.HealthChecks.DB2" Version="5.8.0" />
<PackageReference Include="NetEvolve.HealthChecks.DB2" />
paket add NetEvolve.HealthChecks.DB2 --version 5.8.0
#r "nuget: NetEvolve.HealthChecks.DB2, 5.8.0"
#:package NetEvolve.HealthChecks.DB2@5.8.0
#addin nuget:?package=NetEvolve.HealthChecks.DB2&version=5.8.0
#tool nuget:?package=NetEvolve.HealthChecks.DB2&version=5.8.0
NetEvolve.HealthChecks.DB2
This package provides a health check for IBM's DB2 databases, based on the Net.IBM.Data.Db2 (Windows), Net.IBM.Data.Db2-lnx (Linux) and Net.IBM.Data.Db2-osx (OSX) packages. The main purpose is to check if the database is available and if the database is online.
💡 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.DB2
Warning This package has no direct reference on the
Net.IBM.Data.Db2package. You have to add the package manually to your project, if you want to use the health check. Based on your operating system, you have to add one of the following packages:
Health Check - IBM DB2 Liveness
The health check is a liveness check. It checks if the DB2 Server 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.DB2;
Therefore, you can use two different approaches. In both approaches you have to provide a name for the health check.
❗ The configuration of this package is compatible with the NetEvolve.HealthChecks.DB2.Connector package.
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 tagsdb2anddatabaseare 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 DB2 instances to check.
var builder = services.AddHealthChecks();
builder.AddDB2("<name>");
The configuration looks like this:
{
..., // other configuration
"HealthChecks": {
"DB2": {
"<name>": {
"ConnectionString": "<connection string>",
"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 SQL Server instance to check or dynamic programmatic values.
var builder = services.AddHealthChecks();
builder.AddDB2("<name>", options =>
{
options.ConnectionString = "<connection string>";
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.AddDB2("<name>", options => ..., "DB2", "database");
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
- NetEvolve.Extensions.Tasks (>= 2.0.11)
-
net8.0
- NetEvolve.Extensions.Tasks (>= 2.0.11)
-
net9.0
- NetEvolve.Extensions.Tasks (>= 2.0.11)
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 | 33 | 3/16/2026 |
| 5.13.1 | 81 | 3/3/2026 |
| 5.11.2 | 106 | 1/1/2026 |
| 5.10.32 | 105 | 12/29/2025 |
| 5.9.5 | 253 | 12/15/2025 |
| 5.8.0 | 434 | 12/8/2025 |
| 5.7.10 | 369 | 12/8/2025 |
| 5.5.2 | 137 | 11/29/2025 |
| 5.0.0 | 415 | 11/20/2025 |
| 4.20.61 | 131 | 9/27/2025 |
| 4.15.1 | 328 | 6/13/2025 |
| 4.14.3 | 300 | 6/9/2025 |
| 4.12.3 | 206 | 6/5/2025 |