FluxFlow.Engine.HealthChecks
1.0.0-rc.1
dotnet add package FluxFlow.Engine.HealthChecks --version 1.0.0-rc.1
NuGet\Install-Package FluxFlow.Engine.HealthChecks -Version 1.0.0-rc.1
<PackageReference Include="FluxFlow.Engine.HealthChecks" Version="1.0.0-rc.1" />
<PackageVersion Include="FluxFlow.Engine.HealthChecks" Version="1.0.0-rc.1" />
<PackageReference Include="FluxFlow.Engine.HealthChecks" />
paket add FluxFlow.Engine.HealthChecks --version 1.0.0-rc.1
#r "nuget: FluxFlow.Engine.HealthChecks, 1.0.0-rc.1"
#:package FluxFlow.Engine.HealthChecks@1.0.0-rc.1
#addin nuget:?package=FluxFlow.Engine.HealthChecks&version=1.0.0-rc.1&prerelease
#tool nuget:?package=FluxFlow.Engine.HealthChecks&version=1.0.0-rc.1&prerelease
FluxFlow.Engine.HealthChecks
Optional standard .NET readiness integration for a canonical
FluxFlowApplication.
dotnet add package FluxFlow.Engine.HealthChecks
using FluxFlow.Engine;
using FluxFlow.Engine.HealthChecks;
services.AddFluxFlow(definition);
services.AddHealthChecks()
.AddFluxFlowApplication();
The idempotent registration adds one check named fluxflow.application with
the tags fluxflow and ready.
Healthy: a revision is active and usable.Degraded: the latest update was rejected, but rollback preserved the active revision.Unhealthy: FluxFlow is missing, has no active revision, or is stopped.
The check reads existing in-memory application state only. It adds no worker, polling, timer, storage query, ASP.NET Core middleware, or endpoint. Result data is bounded to lifecycle state, revision identity/sequence, update status, and the final diagnostic stage/code. It never includes payloads, definitions, addresses, diagnostic messages/details, exceptions, paths, connections, or secrets.
ASP.NET Core hosts may expose the standard result using host-owned endpoint wiring:
app.MapHealthChecks("/health/ready");
This package reports application readiness only. Process liveness, durable backlog thresholds, and external dependency health remain separate operational decisions.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | 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. |
-
net10.0
- FluxFlow.Engine (>= 8.0.0-rc.1)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 10.0.7)
-
net8.0
- FluxFlow.Engine (>= 8.0.0-rc.1)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 10.0.7)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0-rc.1 | 64 | 8/9/2026 |
Adds one idempotent standard readiness check over existing FluxFlow application state with bounded privacy-safe metadata.