Dashboard Functionality in 10 #9886
Unanswered
dewrightca
asked this question in
Q&A
Replies: 1 comment
-
|
Hi @dewrightca, if the goal is to enable/disable the dashboard, could you put a guard around the app.MapWhen(context => context.Connection.LocalPort == 8080, app =>
{
app.UseRouting();
app.UseEndpoints(endpoints =>
{
endpoints.MapOrleansDashboard();
});
});
// and similar for your non-dashboard endpointsYou can also map the dashboard to a custom prefix. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In the v8 versioning we had the ability to point the Dashboard from a custom Port to allow us to enable/disable the dashboard being hosted; but it appears in v10 that is lost. It would be great to see those properties exposed again.
My Controller project had 2 web-interfaces; 1) the Orleans Dashboard that let me monitor the state of the grid and 2) my own web-ui controller to allow me to monitor the data being processed and state of those processes.
Is there a way to host the Dashboard like this again?
Beta Was this translation helpful? Give feedback.
All reactions