Dashboard Configuration
Configure the TickerQ Dashboard UI for monitoring and managing jobs.
Configuration Sections
Basic Setup
Configure dashboard base path, backend domain, and CORS policies.
Authentication
Set up authentication methods for securing the dashboard.
Quick Example
csharp
options.AddDashboard(dashboardOptions =>
{
dashboardOptions.SetBasePath("/admin/tickerq");
dashboardOptions.WithBasicAuth("admin", "secure-password");
});AddDashboard
Configure the TickerQ Dashboard UI.
Method:
csharp
TickerOptionsBuilder<TTimeTicker, TCronTicker> AddDashboard(
Action<DashboardOptionsBuilder> dashboardOptions);See Also
- Basic Setup - Path, domain, and CORS configuration
- Authentication - Security options
- Dashboard Guide - Complete dashboard setup
- Configuration Overview - All configuration sections
