![]() |
VOOZH | about |
This package is no longer supported and developed due to lack of support.
dotnet add package NetEvolve.HealthChecks.SqlEdge --version 3.4.139
NuGet\Install-Package NetEvolve.HealthChecks.SqlEdge -Version 3.4.139
<PackageReference Include="NetEvolve.HealthChecks.SqlEdge" Version="3.4.139" />
<PackageVersion Include="NetEvolve.HealthChecks.SqlEdge" Version="3.4.139" />Directory.Packages.props
<PackageReference Include="NetEvolve.HealthChecks.SqlEdge" />Project file
paket add NetEvolve.HealthChecks.SqlEdge --version 3.4.139
#r "nuget: NetEvolve.HealthChecks.SqlEdge, 3.4.139"
#:package NetEvolve.HealthChecks.SqlEdge@3.4.139
#addin nuget:?package=NetEvolve.HealthChecks.SqlEdge&version=3.4.139Install as a Cake Addin
#tool nuget:?package=NetEvolve.HealthChecks.SqlEdge&version=3.4.139Install as a Cake Tool
This package provides a health check for SqlEdge, based on the Microsoft.Data.SqlClient package. The main purpose is to check if the SqlEdge is available and if the database is online.
💡 This package is available for .NET 6.0 and later.
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.SqlEdge
The health check is a liveness check. It checks if the SqlEdge 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.
After adding the package, you need to import the namespace and add the health check to the health check builder.
using NetEvolve.HealthChecks.SqlEdge;
Therefor you can use two different approaches. In both approaches you have to provide a name for the health check.
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 SqlEdge 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.The first one is to use the configuration based approach. This approach is recommended if you have multiple SqlEdge instances to check.
var builder = services.AddHealthChecks();
builder.AddSqlEdge("<name>");
The configuration looks like this:
{
..., // other configuration
"HealthChecks": {
"SqlEdge": {
"<name>": {
"ConnectionString": "<connection string>",
"Timeout": "<timeout>" // optional, default is 100 milliseconds
}
}
}
}
The second approach is to use the builder based approach. This approach is recommended if you have only one SqlEdge instance to check or dynamic programmatic values.
var builder = services.AddHealthChecks();
builder.AddSqlEdge("<name>", options =>
{
options.ConnectionString = "<connection string>";
options.Timeout = "<timeout>"; // optional, default is 100 milliseconds
});
var builder = services.AddHealthChecks();
builder.AddSqlEdge("<name>", options => ..., "sqledge", "database");
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 is compatible. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.