NetEvolve.HealthChecks.SqlServer.Legacy 3.2.9

dotnet add package NetEvolve.HealthChecks.SqlServer.Legacy --version 3.2.9
NuGet\Install-Package NetEvolve.HealthChecks.SqlServer.Legacy -Version 3.2.9
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.SqlServer.Legacy" Version="3.2.9" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NetEvolve.HealthChecks.SqlServer.Legacy --version 3.2.9
#r "nuget: NetEvolve.HealthChecks.SqlServer.Legacy, 3.2.9"
#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.
// Install NetEvolve.HealthChecks.SqlServer.Legacy as a Cake Addin
#addin nuget:?package=NetEvolve.HealthChecks.SqlServer.Legacy&version=3.2.9

// Install NetEvolve.HealthChecks.SqlServer.Legacy as a Cake Tool
#tool nuget:?package=NetEvolve.HealthChecks.SqlServer.Legacy&version=3.2.9

NetEvolve.HealthChecks.SqlServer.Legacy

Nuget Nuget

This package provides a health check for SQL Server, based on the System.Data.SqlClient package. The main purpose is to check if the SQL Server is available and if the database is online.

💡 This package is available for .NET 6.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.SqlServer.Legacy

Health Check - SqlServerLegacy Liveness

The health check is a liveness check. It checks if the SQL 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.SqlServer.Legacy;

Therefor 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.SqlServer package. If you want to use the new package, you can simply replace the package and the configuration will be compatible.

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 sqlserver 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 SQL Server instances to check.

var builder = services.AddHealthChecks();

builder.AddSqlServerLegacy("<name>");

The configuration looks like this:

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

var builder = services.AddHealthChecks();

builder.AddSqlServerLegacy("<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.AddSqlServerLegacy("<name>", options => ..., "sqlserver", "database");
Product Compatible and additional computed target framework versions.
.NET 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 is compatible.  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. 
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
3.2.9 68 4/8/2024
3.2.0 80 4/4/2024
3.1.10 83 2/18/2024
3.1.8 77 2/16/2024
3.1.0 79 2/15/2024
3.0.0 91 2/14/2024
2.1.42 141 1/4/2024
2.1.31 91 1/3/2024
2.1.10 109 12/29/2023
2.1.2 126 11/27/2023
2.0.65 104 11/23/2023
2.0.64 81 11/21/2023
2.0.52 105 11/21/2023
2.0.51 107 11/20/2023
2.0.42 101 11/17/2023
2.0.0 127 10/9/2023
1.1.2 142 9/11/2023
1.1.1 137 9/11/2023
1.0.6 129 9/1/2023
1.0.0 135 8/31/2023