Dot.QuartzPanel 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Dot.QuartzPanel --version 1.0.0
                    
NuGet\Install-Package Dot.QuartzPanel -Version 1.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Dot.QuartzPanel" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Dot.QuartzPanel" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Dot.QuartzPanel" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Dot.QuartzPanel --version 1.0.0
                    
#r "nuget: Dot.QuartzPanel, 1.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Dot.QuartzPanel@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Dot.QuartzPanel&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Dot.QuartzPanel&version=1.0.0
                    
Install as a Cake Tool

Dot.QuartzPanel

A powerful, plug-and-play Blazor admin panel for Quartz.NET with real-time monitoring, job management, and execution history tracking.

.NET License

Features

Real-time Dashboard

  • Live job execution stats
  • 24-hour execution history charts
  • Scheduler control panel (Start/Standby/Shutdown)
  • Auto-refresh with configurable intervals

🎯 Job Management

  • Browse and search all jobs
  • View detailed job metadata and configuration
  • Pause, resume, trigger, and delete jobs
  • Bulk operations support
  • Job data map viewing

Trigger Management

  • View all triggers across jobs
  • Cron and Simple trigger support
  • Pause/resume/delete triggers
  • Next fire time predictions

📊 Execution History

  • Complete execution history with filtering
  • Error tracking with full stack traces
  • Duration and status monitoring
  • Search and filter capabilities

🎨 Modern UI

  • Built with MudBlazor
  • Dark mode support
  • Responsive design
  • Intuitive navigation

Installation

1. Install NuGet Package

dotnet add package Dot.QuartzPanel

2. Configure Services

In your Program.cs:

using Dot.QuartzPanel;

var builder = WebApplication.CreateBuilder(args);

// Add Quartz.NET
builder.Services.AddQuartz(q =>
{
    // Configure your jobs and triggers
    q.AddJob<MyJob>(opts => opts.WithIdentity("MyJob", "MyGroup"));
    q.AddTrigger(opts => opts
        .ForJob("MyJob", "MyGroup")
        .WithCronSchedule("0 0 * * * ?"));
});

builder.Services.AddQuartzHostedService(q => q.WaitForJobsToComplete = true);

// Add Quartz Panel
builder.Services.AddQuartzPanel(options =>
{
    options.MaxHistoryItems = 1000;
    options.EnableRealTimeUpdates = true;
    options.AutoRefreshIntervalSeconds = 5;
});

// Add SignalR for real-time updates
builder.Services.AddSignalR();

// Add Blazor Server
builder.Services.AddRazorPages();
builder.Services.AddServerSideBlazor();

3. Register Job Listener

Important: Manually register the listener with Quartz scheduler:

using Dot.QuartzPanel.Listeners;

// After adding Quartz Panel services
builder.Services.AddSingleton(sp =>
{
    var schedulerFactory = sp.GetRequiredService<ISchedulerFactory>();
    var listener = sp.GetRequiredService<QuartzPanelJobListener>();
    
    _ = Task.Run(async () =>
    {
        var scheduler = await schedulerFactory.GetScheduler();
        scheduler.ListenerManager.AddJobListener(listener);
    });
    
    return listener;
});

4. Map Endpoints

In your middleware pipeline:

var app = builder.Build();

app.UseStaticFiles();
app.UseRouting();

// Map Quartz Panel (includes SignalR hub)
app.MapQuartzPanel("/quartz");  // Default path is "/quartz"

app.MapBlazorHub();
app.MapFallbackToPage("/_Host");

app.Run();

5. Access the Panel

Navigate to https://localhost:5000/quartz (or your configured path) to access the admin panel.

Configuration Options

builder.Services.AddQuartzPanel(options =>
{
    // Maximum execution history items to retain in memory
    options.MaxHistoryItems = 1000;
    
    // Enable real-time updates via SignalR
    options.EnableRealTimeUpdates = true;
    
    // Auto-refresh interval in seconds (0 = disabled)
    options.AutoRefreshIntervalSeconds = 5;
    
    // Base path for the panel routes
    options.BasePath = "/quartz";
    
    // Enable dark mode by default
    options.DefaultDarkMode = false;
    
    // Panel title
    options.Title = "Quartz Panel";
});

Screenshots

Dashboard

Real-time monitoring with execution charts and scheduler controls.

Jobs Management

Browse, search, and manage all your Quartz jobs.

Execution History

Track job executions with filtering and error details.

Architecture

  • Blazor Server: Server-side Blazor for rich interactivity
  • MudBlazor: Material Design component library
  • SignalR: Real-time updates for job executions
  • In-Memory History: Bounded execution history store (customizable)

Custom History Storage

The default implementation uses in-memory storage. To implement persistent storage:

public class DatabaseJobHistoryStore : IJobHistoryStore
{
    // Implement interface methods
    // Store execution history in your database
}

// Register your implementation
builder.Services.AddSingleton<IJobHistoryStore, DatabaseJobHistoryStore>();

Requirements

  • .NET 10.0 or later
  • Quartz.NET 3.x
  • Blazor Server capabilities

Demo Project

Run the included demo API:

cd Dot.QuartzPanel.DemoApi
dotnet run

Navigate to https://localhost:5001/quartz to see the panel in action with sample jobs.

Roadmap

  • Job creation dialog
  • Cron expression builder
  • Calendar view of scheduled jobs
  • Export history to CSV/JSON
  • Authorization/authentication support
  • Job data map editor
  • Clustering support

License

MIT License - feel free to use in your projects!

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

Credits

Built with:

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.2.2 106 12/31/2025
1.2.1 180 12/24/2025
1.2.0 139 12/20/2025
1.1.0 155 12/14/2025
1.0.0 437 12/8/2025