BackWave.Dashboard
1.2.0
dotnet add package BackWave.Dashboard --version 1.2.0
NuGet\Install-Package BackWave.Dashboard -Version 1.2.0
<PackageReference Include="BackWave.Dashboard" Version="1.2.0" />
<PackageVersion Include="BackWave.Dashboard" Version="1.2.0" />
<PackageReference Include="BackWave.Dashboard" />
paket add BackWave.Dashboard --version 1.2.0
#r "nuget: BackWave.Dashboard, 1.2.0"
#:package BackWave.Dashboard@1.2.0
#addin nuget:?package=BackWave.Dashboard&version=1.2.0
#tool nuget:?package=BackWave.Dashboard&version=1.2.0
BackWave.Dashboard
The monitoring dashboard for BackWave. Mount it on a route and watch jobs, queues, failures, schedules, and observers in real time. It's server-rendered, with the design system inlined at render time, so there are zero static assets to host or version.
using BackWave.Dashboard;
var app = builder.Build();
app.UseBackWaveDashboard("/backwave", new BackWaveDashboardOptions
{
// View defaults to allow; the Operator Actions are default-deny, so authorize each to your app's rules.
AuthorizeView = _ => ValueTask.FromResult(true),
AuthorizeRequeue = ctx => ValueTask.FromResult(ctx.User.IsInRole("ops")),
AuthorizeCancel = ctx => ValueTask.FromResult(ctx.User.IsInRole("ops")),
AuthorizePauseQueue = ctx => ValueTask.FromResult(ctx.User.IsInRole("ops")),
AuthorizeTriggerSchedule = ctx => ValueTask.FromResult(ctx.User.IsInRole("ops")),
ResolveActor = ctx => ctx.User.Identity?.Name ?? "anonymous",
});
Then browse to /backwave.
What you get
- Live views of jobs, queues, "executing now", failures with captured detail, schedules, and transition observers.
- Operator Actions: requeue, cancel, pause/resume a queue, trigger a schedule. Each is default-deny and antiforgery-protected, and every action is written to an audit log with its actor.
- Job detail: payload, tags, the transition timeline, and (when exposed) failure detail.
For the Workflows tab and graph view, add BackWave.Pro.Dashboard. Full documentation: https://backwave.app
| 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 is compatible. 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
- BackWave (>= 1.2.0)
- BackWave.Hosting (>= 1.2.0)
-
net8.0
- BackWave (>= 1.2.0)
- BackWave.Hosting (>= 1.2.0)
-
net9.0
- BackWave (>= 1.2.0)
- BackWave.Hosting (>= 1.2.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on BackWave.Dashboard:
| Package | Downloads |
|---|---|
|
BackWave.Pro.Dashboard
BackWave Pro dashboard surfaces that contribute to the free BackWave dashboard through its extension points. Free to use under $1M annual revenue; a license is required above that. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Release notes and upgrade guidance: https://backwave.app/