![]() |
VOOZH | about |
dotnet add package AspNetCore.HealthChecks.MySql --version 9.0.0
NuGet\Install-Package AspNetCore.HealthChecks.MySql -Version 9.0.0
<PackageReference Include="AspNetCore.HealthChecks.MySql" Version="9.0.0" />
<PackageVersion Include="AspNetCore.HealthChecks.MySql" Version="9.0.0" />Directory.Packages.props
<PackageReference Include="AspNetCore.HealthChecks.MySql" />Project file
paket add AspNetCore.HealthChecks.MySql --version 9.0.0
#r "nuget: AspNetCore.HealthChecks.MySql, 9.0.0"
#:package AspNetCore.HealthChecks.MySql@9.0.0
#addin nuget:?package=AspNetCore.HealthChecks.MySql&version=9.0.0Install as a Cake Addin
#tool nuget:?package=AspNetCore.HealthChecks.MySql&version=9.0.0Install as a Cake Tool
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.
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();
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.
You can additionally add the following parameters:
healthQuery: A query to run against the server. If null (the default), the health check will send a MySQL "ping" packet to the server.configure: An action to configure the MySqlConnection object. This is called after the MySqlConnection is created but before the connection is opened.name: The health check name. The default is mysql.failureStatus: The HealthStatus that should be reported when the health check fails. Default is HealthStatus.Unhealthy.tags: A list of tags that can be used to filter sets of health checks.timeout: A System.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"
);
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 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. 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 was computed. 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. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on AspNetCore.HealthChecks.MySql:
| Package | Downloads |
|---|---|
|
Aspire.MySqlConnector
A MySQL client that integrates with Aspire, including health checks, metrics, logging, and telemetry. |
|
|
FenixAlliance.ACL.Dependencies
Application Component for the Alliance Business Suite. |
|
|
Aspire.Hosting.MySql
MySQL support for Aspire. |
|
|
EachShow.Host
主机启动程序 |
|
|
GeeksCoreLibrary
Geeks Core Library |
Showing the top 11 popular GitHub repositories that depend on AspNetCore.HealthChecks.MySql:
| Repository | Stars |
|---|---|
|
microsoft/aspire
Aspire is the tool for code-first, extensible, observable dev and deploy.
|
|
|
Ombi-app/Ombi
Want a Movie or TV Show on Plex/Emby/Jellyfin? Use Ombi!
|
|
|
skoruba/IdentityServer4.Admin
The administration for the IdentityServer4 and Asp.Net Core Identity
|
|
|
dotnetcore/osharp
OSharp是一个基于.Net6.0的快速开发框架,框架对 AspNetCore 的配置、依赖注入、日志、缓存、实体框架、Mvc(WebApi)、身份认证、功能权限、数据权限等模块进行更高一级的自动化封装,并规范了一套业务实现的代码结构与操作流程,使 .Net 框架更易于应用到实际项目开发中。
|
|
|
AlphaYu/adnc
A pragmatic .NET 8 framework for modular monoliths to evolve seamlessly into distributed microservices.
|
|
|
desenvolvedor-io/dev-store
A microservices e-commerce reference application built with ASP.NET 9
|
|
|
Implem/Implem.Pleasanter
Pleasanter is a no-code/low-code development platform that runs on .NET. You can quickly create business applications with simple operations.
|
|
|
lkurzyniec/netcore-boilerplate
Boilerplate of API in .NET 10
|
|
| ElectNewt/Distribt | |
| witskeeper/geektime | |
|
kamilbaczek/Modular-monolith-by-example
Modular monolith architecture example in .NET. Estimation Tool is tool to optimize estimation process in IT company.
|
| Version | Downloads | Last Updated |
|---|---|---|
| 9.0.0 | 1,835,064 | 12/19/2024 |
| 8.0.1 | 2,177,462 | 4/2/2024 |
| 8.0.0 | 433,755 | 12/15/2023 |
| 7.0.0 | 328,242 | 7/30/2023 |
| 7.0.0-rc2.5 | 44,987 | 3/13/2023 |
| 7.0.0-rc2.4 | 23,414 | 1/14/2023 |
| 7.0.0-rc2.3 | 398 | 12/27/2022 |
| 7.0.0-rc2.2 | 357 | 12/27/2022 |
| 6.0.2 | 2,810,235 | 2/28/2022 |
| 6.0.1 | 355,316 | 12/29/2021 |
| 6.0.1-rc1.1 | 37,878 | 11/5/2021 |
| 6.0.0 | 23,562 | 12/29/2021 |
| 5.0.1 | 831,250 | 1/5/2021 |
| 5.0.0 | 11,822 | 12/29/2020 |
| 5.0.0-preview1 | 4,395 | 11/22/2020 |
| 3.2.0 | 536,031 | 9/3/2020 |
| 3.1.1 | 706,334 | 4/17/2020 |
| 3.1.0 | 39,152 | 4/9/2020 |
| 3.0.0 | 464,543 | 9/24/2019 |
| 2.2.0 | 684,508 | 11/14/2018 |