![]() |
VOOZH | about |
dotnet add package Microsoft.Orleans.Dashboard --version 10.2.0
NuGet\Install-Package Microsoft.Orleans.Dashboard -Version 10.2.0
<PackageReference Include="Microsoft.Orleans.Dashboard" Version="10.2.0" />
<PackageVersion Include="Microsoft.Orleans.Dashboard" Version="10.2.0" />Directory.Packages.props
<PackageReference Include="Microsoft.Orleans.Dashboard" />Project file
paket add Microsoft.Orleans.Dashboard --version 10.2.0
#r "nuget: Microsoft.Orleans.Dashboard, 10.2.0"
#:package Microsoft.Orleans.Dashboard@10.2.0
#addin nuget:?package=Microsoft.Orleans.Dashboard&version=10.2.0Install as a Cake Addin
#tool nuget:?package=Microsoft.Orleans.Dashboard&version=10.2.0Install as a Cake Tool
Microsoft Orleans Dashboard is a web-based monitoring and diagnostics tool for Orleans applications. It provides real-time visualization of grain activations, runtime statistics, silo health, and performance metrics through an intuitive web interface.
To use this package, install it via NuGet:
dotnet add package Microsoft.Orleans.Dashboard
using Orleans.Dashboard;
var builder = WebApplication.CreateBuilder(args);
// Configure Orleans
builder.UseOrleans(siloBuilder =>
{
siloBuilder.UseLocalhostClustering();
siloBuilder.UseInMemoryReminderService();
siloBuilder.AddMemoryGrainStorageAsDefault();
// Add the dashboard
siloBuilder.AddDashboard();
});
var app = builder.Build();
// Map dashboard endpoints
app.MapOrleansDashboard();
app.Run();
The dashboard will be accessible at the application's base URL (e.g., http://localhost:5000/).
For scenarios where you want to host the dashboard separately from your silos:
using Orleans.Dashboard;
using System.Net;
var builder = WebApplication.CreateBuilder(args);
// Configure Orleans client
builder.UseOrleansClient(clientBuilder =>
{
clientBuilder.UseStaticClustering(options =>
options.Gateways.Add(new IPEndPoint(IPAddress.Loopback, 30000).ToGatewayUri()));
// Add dashboard services
clientBuilder.AddDashboard();
});
var app = builder.Build();
// Map dashboard endpoints
app.MapOrleansDashboard();
await app.RunAsync();
The dashboard can be configured with various options:
siloBuilder.AddDashboard(options =>
{
options.CounterUpdateIntervalMs = 1000; // Metrics update interval (default: 1000ms)
});
You can customize the route prefix when mapping dashboard endpoints:
// Map dashboard at a custom path
app.MapOrleansDashboard(routePrefix: "/dashboard");
// Add authentication
app.MapOrleansDashboard().RequireAuthorization();
Once configured, the dashboard is accessible at:
http://localhost:{AppPort}/ (where AppPort is your web application's port)http://localhost:{AppPort}/{routePrefix}/For complete working examples, see the playground projects:
playground/DashboardCohosted - Dashboard cohosted with Orleans in a web applicationplayground/DashboardSeparateHost - Dashboard in a separate web application connecting to an Orleans clusterFor more comprehensive documentation, please refer to:
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 1 NuGet packages that depend on Microsoft.Orleans.Dashboard:
| Package | Downloads |
|---|---|
|
Troolio.Core
Package Description |
Showing the top 2 popular GitHub repositories that depend on Microsoft.Orleans.Dashboard:
| Repository | Stars |
|---|---|
|
dotnet/samples
Sample code referenced by the .NET documentation
|
|
|
shinyorg/templates
dotnet CLI & Visual Studio Templates
|
| Version | Downloads | Last Updated |
|---|---|---|
| 10.2.0 | 4,120 | 6/12/2026 |
| 10.1.1-preview.1 | 186 | 5/13/2026 |
| 10.1.0 | 67,116 | 4/14/2026 |
| 10.0.1 | 170,309 | 2/7/2026 |
| 10.0.0 | 24,265 | 1/20/2026 |
| 10.0.0-rc.2 | 979 | 12/31/2025 |