Setting up the Orleans dashboard
The Orleans dashboard helps developers to understand what is happening inside an Orleans application through simple metrics and insights. It is simple to set up – let's see how it can be configured and launched.
Step 1: Install the OrleansDashboard NuGet package and configure a silo:
- Install the
OrleansDashboard
NuGet package in theDistel.WebHost
project. - Add configuration as shown here in the
Distel.WebHost\Program.cs
file forsiloB
uilder
to use the dashboard:<<Code removed for brevity>> builder.Host.UseOrleans(siloBuilder => { siloBuilder .ConfigureApplicationParts ...