Fluens.Web.Healthchecks
0.7.5
See the version list below for details.
dotnet add package Fluens.Web.Healthchecks --version 0.7.5
NuGet\Install-Package Fluens.Web.Healthchecks -Version 0.7.5
<PackageReference Include="Fluens.Web.Healthchecks" Version="0.7.5" />
<PackageVersion Include="Fluens.Web.Healthchecks" Version="0.7.5" />
<PackageReference Include="Fluens.Web.Healthchecks" />
paket add Fluens.Web.Healthchecks --version 0.7.5
#r "nuget: Fluens.Web.Healthchecks, 0.7.5"
#:package Fluens.Web.Healthchecks@0.7.5
#addin nuget:?package=Fluens.Web.Healthchecks&version=0.7.5
#tool nuget:?package=Fluens.Web.Healthchecks&version=0.7.5
Fluens.Web.Healthchecks
ASP.NET Core health-checks registration helpers with a configurable, DI-discoverable health-endpoint path for Fluens web applications.
Installation
dotnet add package Fluens.Web.Healthchecks
Usage
builder.AddFluens()
.AddWeb()
.AddHealthchecks(opts =>
{
opts.Path = "/healthz";
});
var app = builder.Build();
app.MapFluensHealthchecks();
AddHealthchecks() registers ASP.NET Core health checks and publishes the configured
path through IHealthEndpointInfo (from Fluens.Web), so other libraries — for example
service discovery — can read the health path from DI without depending on this package.
Configuration section: Fluens:Web:Healthchecks:
{
"Fluens": {
"Web": {
"Healthchecks": {
"Enabled": true,
"Path": "/health"
}
}
}
}
When Enabled is false, AddHealthchecks() registers nothing and
MapFluensHealthchecks() maps nothing.
License
This project is licensed under the MIT License.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | 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. |
-
net10.0
- Fluens.Web (>= 0.7.5)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.