FluxFlow.Engine.HealthChecks 1.0.0-rc.1

This is a prerelease version of FluxFlow.Engine.HealthChecks.
dotnet add package FluxFlow.Engine.HealthChecks --version 1.0.0-rc.1
                    
NuGet\Install-Package FluxFlow.Engine.HealthChecks -Version 1.0.0-rc.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FluxFlow.Engine.HealthChecks" Version="1.0.0-rc.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FluxFlow.Engine.HealthChecks" Version="1.0.0-rc.1" />
                    
Directory.Packages.props
<PackageReference Include="FluxFlow.Engine.HealthChecks" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add FluxFlow.Engine.HealthChecks --version 1.0.0-rc.1
                    
#r "nuget: FluxFlow.Engine.HealthChecks, 1.0.0-rc.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package FluxFlow.Engine.HealthChecks@1.0.0-rc.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=FluxFlow.Engine.HealthChecks&version=1.0.0-rc.1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=FluxFlow.Engine.HealthChecks&version=1.0.0-rc.1&prerelease
                    
Install as a Cake Tool

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.