The CAP provides a Dashboard for viewing messages, and the features provided by Dashboard make it easy to view and manage messages.
By default, Dashboard middleware will not be launched. To enable Dashboard functionality you need to add the following code to your configuration:
services.AddCap(x =>
{
//...
// Register Dashboard
x.UseDashboard();
});
By default, you can open the Dashboard by visiting the url http://localhost:xxx/cap
.
Default :'/cap’
You can change the path of the Dashboard by modifying this configuration item.
Default: 2000ms
This configuration item is used to configure the Dashboard front end to get the polling time of the status interface (/stats).
This configuration item is used to configure the authorization filter when accessing the Dashboard. The default filter allows LAN access. When your application wants to provide external network access, you can customize the authentication rules by setting this configuration. See the next section for details.
Dashboard authentication can be customized by implementing the IDashboardAuthorizationFilter
interface.
The following is a sample code that determines if access is allowed by reading the accesskey from the url request parameter.
public class TestAuthorizationFilter : IDashboardAuthorizationFilter
{
public bool Authorize(DashboardContext context)
{
if(context.Request.GetQuery("accesskey")=="xxxxxx"){
return true;
}
return false;
}
}
Then configure this filter when registration Dashboard.
services.AddCap(x =>
{
//...
// Register Dashboard
x.UseDashboard(opt => {
opt.Authorization = new[] {new TestAuthorizationFilter()};
});
});