Quartz.Plugins 3.20.1

Quartz.Plugins

Quartz.Plugins provides a set of ready-made plugins for common scheduling needs.

Installation

dotnet add package Quartz.Plugins

Included plugins

  • LoggingJobHistoryPlugin / LoggingTriggerHistoryPlugin — log a history of job executions and trigger firings.
  • StructuredLoggingJobHistoryPlugin / StructuredLoggingTriggerHistoryPlugin — structured-logging equivalents using named message-template parameters (Serilog, NLog, …); recommended when using structured logging sinks.
  • XMLSchedulingDataProcessorPlugin / JsonSchedulingDataProcessorPlugin — load jobs and triggers from XML or JSON files, optionally re-scanning for changes.
  • ShutdownHookPlugin — shuts the scheduler down when the process terminates.
  • JobInterruptMonitorPlugin — interrupts jobs that run longer than a configured maximum (Quartz 3.3+).

Usage

Plugins are enabled via DI extensions or configuration keys (quartz.plugin.{name}.{property}):

services.AddQuartz(q =>
{
    q.UseStructuredJobLogging();
    q.UseStructuredTriggerLogging();
});

Authoring configuration extensions

When you write your own ISchedulerPlugin, you can offer the same strongly typed q.UseMyPlugin() experience as the built-in plugins. Write an extension method on IPropertyConfigurationRoot and call the UsePlugin<TPlugin>(name) helper (shipped in the core Quartz package): it sets the quartz.plugin.{name}.type property and, when configuration is backed by Microsoft DI (AddQuartz), registers the plugin into the container so it is constructed with constructor injection. Use TryRegisterSingleton<TService, TImplementation>() to register any companion services the plugin needs injected (it returns false when there is no container, e.g. plain SchedulerBuilder usage).

public static T UseMyPlugin<T>(this T configurer, Action<MyPluginOptions>? configure = null)
    where T : IPropertyConfigurationRoot
{
    configurer.UsePlugin<MyPlugin>("myPlugin");
    configurer.TryRegisterSingleton<IMyPluginDependency, MyPluginDependency>();
    configure?.Invoke(new MyPluginOptions(configurer));
    return configurer;
}

Derive strongly typed options from PropertiesSetter with the plugin's property prefix; each setter maps to a quartz.plugin.{name}.{property} key applied to the plugin's public setters. The same extension method then works with both AddQuartz (constructor injection) and plain SchedulerBuilder (reflection, requires a public parameterless constructor).

Documentation

📖 Full documentation and per-plugin configuration: https://www.quartz-scheduler.net/documentation/quartz-3.x/packages/quartz-plugins.html

Showing the top 20 packages that depend on Quartz.Plugins.

Packages Downloads
Quartz.Plugins.TimeZoneConverter
Quartz.NET TimeZoneConverter integration https://github.com/mj1856/TimeZoneConverter; Quartz Scheduling Framework for .NET
29
Quartz.Plugins.TimeZoneConverter
Quartz.NET TimeZoneConverter integration https://github.com/mj1856/TimeZoneConverter; Quartz Scheduling Framework for .NET
30
Quartz.Plugins.TimeZoneConverter
Quartz.NET TimeZoneConverter integration https://github.com/mj1856/TimeZoneConverter; Quartz Scheduling Framework for .NET
31
Quartz.Plugins.TimeZoneConverter
Quartz.NET TimeZoneConverter integration https://github.com/mj1856/TimeZoneConverter; Quartz Scheduling Framework for .NET
32
Quartz.Plugins.TimeZoneConverter
Quartz.NET TimeZoneConverter integration https://github.com/mj1856/TimeZoneConverter; Quartz Scheduling Framework for .NET
33
Quartz.Plugins.TimeZoneConverter
Quartz.NET TimeZoneConverter integration https://github.com/mj1856/TimeZoneConverter; Quartz Scheduling Framework for .NET
34

https://github.com/quartznet/quartznet/releases

.NET Framework 4.6.2

.NET Framework 4.7.2

.NET Standard 2.0

Version Downloads Last updated
4.1.0 1 09/13/2026
4.0.1 5 09/09/2026
4.0.0 7 09/04/2026
4.0.0-rc.2 6 09/04/2026
4.0.0-rc.1 6 09/04/2026
4.0.0-beta.1 6 09/04/2026
4.0.0-alpha.5 7 09/01/2026
4.0.0-alpha.4 8 08/31/2026
4.0.0-alpha.3 9 08/27/2026
4.0.0-alpha.2 9 08/26/2026
4.0.0-alpha.1 8 08/25/2026
3.22.0 1 09/13/2026
3.21.0 1 09/12/2026
3.20.1 6 09/04/2026
3.20.0 8 08/28/2026
3.19.1 21 07/26/2026
3.19.0 18 07/26/2026
3.18.2 22 06/28/2026
3.18.1 35 04/27/2026
3.18.0 31 04/17/2026
3.17.1 34 04/17/2026
3.17.0 32 04/17/2026
3.16.1 32 04/17/2026
3.16.0 34 04/17/2026
3.15.1 23 04/17/2026
3.15.0 34 04/17/2026
3.14.0 21 04/17/2026
3.13.1 33 04/17/2026
3.13.0 33 04/17/2026
3.12.0 35 04/17/2026
3.11.0 34 04/17/2026
3.10.0 33 04/17/2026
3.9.0 31 04/17/2026
3.8.1 33 04/17/2026
3.8.0 29 04/17/2026
3.7.0 33 04/17/2026
3.6.3 25 04/17/2026
3.6.2 36 04/17/2026
3.6.1 24 04/17/2026
3.6.0 34 04/17/2026
3.5.0 32 04/17/2026
3.4.0 34 04/17/2026
3.3.3 31 04/17/2026
3.3.2 32 04/17/2026
3.3.1 33 04/17/2026
3.3.0 35 04/17/2026
3.2.4 30 04/17/2026
3.2.3 32 04/17/2026
3.2.2 36 04/17/2026
3.2.1 33 04/17/2026
3.2.0 33 04/17/2026
3.1.0 25 04/17/2026
3.0.7 32 04/17/2026
3.0.6 34 04/17/2026
3.0.5 32 04/17/2026
3.0.4 32 04/17/2026
3.0.3 23 04/17/2026
3.0.2 35 04/17/2026
3.0.1 33 04/17/2026
3.0.0 34 04/17/2026
3.0.0-beta1 35 04/17/2026