Excalibur.Operations.Dashboard 10.0.0-alpha.8

This is a prerelease version of Excalibur.Operations.Dashboard.
dotnet add package Excalibur.Operations.Dashboard --version 10.0.0-alpha.8
                    
NuGet\Install-Package Excalibur.Operations.Dashboard -Version 10.0.0-alpha.8
                    
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="Excalibur.Operations.Dashboard" Version="10.0.0-alpha.8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Excalibur.Operations.Dashboard" Version="10.0.0-alpha.8" />
                    
Directory.Packages.props
<PackageReference Include="Excalibur.Operations.Dashboard" />
                    
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 Excalibur.Operations.Dashboard --version 10.0.0-alpha.8
                    
#r "nuget: Excalibur.Operations.Dashboard, 10.0.0-alpha.8"
                    
#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 Excalibur.Operations.Dashboard@10.0.0-alpha.8
                    
#: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=Excalibur.Operations.Dashboard&version=10.0.0-alpha.8&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Excalibur.Operations.Dashboard&version=10.0.0-alpha.8&prerelease
                    
Install as a Cake Tool

Excalibur.Operations.Dashboard

A free, OSS, read-only-by-default operational dashboard for the Excalibur framework. One opt-in package surfaces the live state of every reliability subsystem the framework already instruments: outbox, dead-letter queue, inbox, sagas, projection / CDC lag, and leader election — plus an embedded single-page app. Mutating actions (dead-letter replay) are opt-in and auth-gated. No paywall, no license key.

Getting started

builder.Services.AddDashboard(options =>
{
    options.RoutePrefix = "/dashboard";
    // Read-only by default. Opt in to mutating actions (dead-letter replay) explicitly:
    // options.EnableMutatingActions = true;
});

var app = builder.Build();
app.MapDashboardApi();

AddDashboard registers validated DashboardOptions (validated at startup via ValidateOnStart) and the subsystem read-endpoint module registry. MapDashboardApi maps a capability-discovery root endpoint plus every registered subsystem's read endpoints under the configured route prefix.

Design

  • Minimal API, registered through Microsoft.Extensions.DependencyInjection.
  • AOT/trim-safe: response DTOs serialize through a System.Text.Json source-generation context, so the consumer path carries no [RequiresUnreferencedCode].
  • Fail-open: a subsystem that is not configured yields an empty / not-configured payload, never a 500.
  • Read-only by default: mutating endpoints are not mapped at all unless EnableMutatingActions is set, and when set they additionally require an authenticated, authorized caller.
Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Excalibur.Operations.Dashboard:

Package Downloads
Excalibur.Operations.Dashboard.EventSourcing

Event-sourcing add-on for the Excalibur operational dashboard: adds the projection/CDC-lag read panel (per-subscription lag against the global stream head). Opt-in via AddProjectionLagDashboard(); keeps the base dashboard package free of an event-sourcing dependency.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.0.0-alpha.8 41 8/14/2026
10.0.0-alpha.7 37 8/13/2026
10.0.0-alpha.6 48 8/11/2026
10.0.0-alpha.5 54 8/10/2026
10.0.0-alpha.4 50 8/10/2026

See CHANGELOG.md for release notes