Excalibur.Operations.Dashboard
10.0.0-alpha.8
dotnet add package Excalibur.Operations.Dashboard --version 10.0.0-alpha.8
NuGet\Install-Package Excalibur.Operations.Dashboard -Version 10.0.0-alpha.8
<PackageReference Include="Excalibur.Operations.Dashboard" Version="10.0.0-alpha.8" />
<PackageVersion Include="Excalibur.Operations.Dashboard" Version="10.0.0-alpha.8" />
<PackageReference Include="Excalibur.Operations.Dashboard" />
paket add Excalibur.Operations.Dashboard --version 10.0.0-alpha.8
#r "nuget: Excalibur.Operations.Dashboard, 10.0.0-alpha.8"
#:package Excalibur.Operations.Dashboard@10.0.0-alpha.8
#addin nuget:?package=Excalibur.Operations.Dashboard&version=10.0.0-alpha.8&prerelease
#tool nuget:?package=Excalibur.Operations.Dashboard&version=10.0.0-alpha.8&prerelease
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.Jsonsource-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
EnableMutatingActionsis set, and when set they additionally require an authenticated, authorized caller.
| 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
- Ben.Demystifier (>= 0.4.1)
- BenchmarkDotNet (>= 0.15.8)
- CloudNative.CloudEvents (>= 2.8.0)
- CloudNative.CloudEvents.SystemTextJson (>= 2.8.0)
- Cronos (>= 0.12.0)
- Dapper (>= 2.1.72)
- Excalibur.Dispatch (>= 10.0.0-alpha.8)
- Excalibur.Dispatch.Abstractions (>= 10.0.0-alpha.8)
- Excalibur.Dispatch.LeaderElection.Abstractions (>= 10.0.0-alpha.8)
- Excalibur.Operations.Dashboard.Spa (>= 10.0.0-alpha.8)
- Excalibur.Saga (>= 10.0.0-alpha.8)
- Excalibur.Workflows.Abstractions (>= 10.0.0-alpha.8)
- FluentValidation (>= 12.1.1)
- FluentValidation.DependencyInjectionExtensions (>= 12.1.1)
- IdentityModel (>= 7.0.0)
- JsonNet.ContractResolvers (>= 2.0.0)
- Medo.Uuid7 (>= 3.2.0)
- MemoryPack (>= 1.21.4)
- Microsoft.ApplicationInsights (>= 3.1.0)
- Microsoft.CodeAnalysis.Analyzers (>= 5.3.0)
- Microsoft.CodeAnalysis.Common (>= 5.3.0)
- Microsoft.CodeAnalysis.CSharp (>= 5.3.0)
- Microsoft.Extensions.FileProviders.Embedded (>= 10.0.10)
- Microsoft.IdentityModel.Tokens (>= 8.17.0)
- OpenTelemetry (>= 1.15.3)
- OpenTelemetry.Api (>= 1.15.3)
- OpenTelemetry.Extensions.Hosting (>= 1.15.3)
- Polly (>= 8.6.6)
- System.IdentityModel.Tokens.Jwt (>= 8.17.0)
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