DotNetDiag.HealthChecks.MySql
10.0.14
dotnet add package DotNetDiag.HealthChecks.MySql --version 10.0.14
NuGet\Install-Package DotNetDiag.HealthChecks.MySql -Version 10.0.14
<PackageReference Include="DotNetDiag.HealthChecks.MySql" Version="10.0.14" />
<PackageVersion Include="DotNetDiag.HealthChecks.MySql" Version="10.0.14" />
<PackageReference Include="DotNetDiag.HealthChecks.MySql" />
paket add DotNetDiag.HealthChecks.MySql --version 10.0.14
#r "nuget: DotNetDiag.HealthChecks.MySql, 10.0.14"
#:package DotNetDiag.HealthChecks.MySql@10.0.14
#addin nuget:?package=DotNetDiag.HealthChecks.MySql&version=10.0.14
#tool nuget:?package=DotNetDiag.HealthChecks.MySql&version=10.0.14
MySQL Health Check
This health check verifies the ability to communicate with a MySQL Server. It uses the provided MySqlDataSource or a connection string to connect to the server.
Defaults
By default, the MySqlDataSource instance is resolved from service provider.
(This should be the same as the instance being used by the application; do not create a new MySqlDataSource just for the health check.)
The health check will send a MySQL "ping" packet to the server to verify connectivity.
builder.Services
.AddMySqlDataSource(builder.Configuration.GetConnectionString("mysql")) // using the MySqlConnector.DependencyInjection package
.AddHealthChecks().AddMySql();
Connection String
You can also specify a connection string directly:
builder.Services.AddHealthChecks().AddMySql(connectionString: "Server=...;User Id=...;Password=...");
This can be useful if you're not using MySqlDataSource in your application.
Customization
You can additionally add the following parameters:
healthQuery: A query to run against the server. Ifnull(the default), the health check will send a MySQL "ping" packet to the server.configure: An action to configure theMySqlConnectionobject. This is called after theMySqlConnectionis created but before the connection is opened.name: The health check name. The default ismysql.failureStatus: TheHealthStatusthat should be reported when the health check fails. Default isHealthStatus.Unhealthy.tags: A list of tags that can be used to filter sets of health checks.timeout: ASystem.TimeSpanrepresenting the timeout of the check.
builder.Services
.AddMySqlDataSource(builder.Configuration.GetConnectionString("mysql"))
.AddHealthChecks().AddMySql(
healthQuery: "SELECT 1;",
configure: conn => conn.ConnectTimeout = 3,
name: "MySQL"
);
Breaking changes
In previous versions, MySqlHealthCheck defaulted to testing connectivity by sending a SELECT 1; query to the server.
It has been changed to send a more efficient "ping" packet instead.
To restore the previous behavior, specify healthQuery: "SELECT 1;" when registering the health check.
While not a breaking change, it's now preferred to use MySqlDataSource instead of a connection string.
This allows the health check to use the same connection pool as the rest of the application.
This can be achieved by calling the .AddMySql() overload that has no required parameters.
The health check assumes that a MySqlDataSource instance has been registered with the service provider and will retrieve it automatically.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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. net9.0 was computed. 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. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 8.0.30)
- MySqlConnector (>= 2.6.1)
-
net10.0
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 10.0.11)
- MySqlConnector (>= 2.6.1)
-
net8.0
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 8.0.30)
- MySqlConnector (>= 2.6.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on DotNetDiag.HealthChecks.MySql:
| Package | Downloads |
|---|---|
|
NecroSharper.IdentityServer10.Admin.UI
The package with UI for the administration of the IdentityServer4 |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on DotNetDiag.HealthChecks.MySql:
| Repository | Stars |
|---|---|
|
IoTSharp/IoTSharp
IoTSharp is an open-source IoT platform for data collection, processing, visualization, and device management.
|