AspNetCore.Pulse.MySql
8.0.5
dotnet add package AspNetCore.Pulse.MySql --version 8.0.5
NuGet\Install-Package AspNetCore.Pulse.MySql -Version 8.0.5
<PackageReference Include="AspNetCore.Pulse.MySql" Version="8.0.5" />
paket add AspNetCore.Pulse.MySql --version 8.0.5
#r "nuget: AspNetCore.Pulse.MySql, 8.0.5"
// Install AspNetCore.Pulse.MySql as a Cake Addin #addin nuget:?package=AspNetCore.Pulse.MySql&version=8.0.5 // Install AspNetCore.Pulse.MySql as a Cake Tool #tool nuget:?package=AspNetCore.Pulse.MySql&version=8.0.5
MySQL
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 theMySqlConnection
object. This is called after theMySqlConnection
is created but before the connection is opened.name
: The health check name. The default ismysql
.failureStatus
: TheHealthStatus
that 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.TimeSpan
representing 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 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 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 was computed. 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. |
.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.0)
- MySqlConnector (>= 2.3.1)
-
net6.0
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 8.0.0)
- MySqlConnector (>= 2.3.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.