https://github.com/jlucansky/Quartzmin
Quartzmin is powerful, easy to use web management tool for Quartz.NET
https://github.com/jlucansky/Quartzmin
admin core dotnet quartz ui web
Last synced: about 1 month ago
JSON representation
Quartzmin is powerful, easy to use web management tool for Quartz.NET
- Host: GitHub
- URL: https://github.com/jlucansky/Quartzmin
- Owner: jlucansky
- License: mit
- Created: 2018-12-28T15:28:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-11-14T14:34:03.000Z (over 1 year ago)
- Last Synced: 2025-04-10T02:17:32.364Z (2 months ago)
- Topics: admin, core, dotnet, quartz, ui, web
- Language: C#
- Size: 1.79 MB
- Stars: 564
- Watchers: 22
- Forks: 184
- Open Issues: 41
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![]()
---
[](https://www.nuget.org/packages/Quartzmin)
[](LICENSE)Quartzmin is powerful, easy to use web management tool for Quartz.NET
Quartzmin can be used within your existing application with minimum effort as a Quartz.NET plugin when it automatically creates embedded web server. Or it can be plugged into your existing OWIN-based web application as a middleware.
> [Quartz.NET](https://www.quartz-scheduler.net) is a full-featured, open source job scheduling system that can be used from smallest apps to large scale enterprise systems.

The goal of this project is to provide convenient tool to utilize most of the functionality that Quartz.NET enables. The biggest challenge was to create a simple yet effective editor of job data map which is heart of Quartz.NET. Every job data map item is strongly typed and Quartzmin can be easily extended with a custom editor for your specific type beside standard supported types such as String, Integer, DateTime and so on.
Quartzmin was created with **Semantic UI** and **Handlebars.Net** as the template engine.
## Features
- Add, modify jobs and triggers
- Add, modify calendars (Annual, Cron, Daily, Holiday, Monthly, Weekly)
- Change trigger type to Cron, Simple, Calendar Interval or Daily Time Interval
- Set typed job data map values (bool, DateTime, int, float, long, double, decimal, string, byte[])
- Create custom type editor for complex type in job data map
- Manage scheduler state (standby, shutdown)
- Pause and resume job and trigger groups
- Pause and resume triggers individually
- Pause and resume all triggers for specific job
- Trigger specific job immediately
- Watch currently executing jobs
- Interrupt executing job
- See next scheduled dates for Cron
- See recent job history, state and error messages## Install
Quartzmin is available on [nuget.org](https://www.nuget.org/packages/Quartzmin)To install Quartzmin, run the following command in the Package Manager Console
```powershell
PM> Install-Package Quartzmin
```
## Minimum requirements
- .NET Framework 4.5.2
- .NET Standard 2.0## Usage
### Embedded web server
Everything you should do is just install [Quartzmin.SelfHost](https://www.nuget.org/packages/Quartzmin.SelfHost) package and configure `QuartzminPlugin` and `ExecutionHistoryPlugin` to support histograms and statistics.Run the following command in the Package Manager Console:
```powershell
PM> Install-Package Quartzmin.SelfHost
```
Add to your `App.config` file:
```xml
```
Start Quartz.NET scheduler somewhere:
```csharp
StdSchedulerFactory.GetDefaultScheduler().Result.Start();
```### OWIN middleware
Add to your `Startup.cs` file:
```csharp
public void Configuration(IAppBuilder app)
{
app.UseQuartzmin(new QuartzminOptions()
{
Scheduler = StdSchedulerFactory.GetDefaultScheduler().Result
});
}
```### ASP.NET Core middleware
Add to your `Startup.cs` file:
```csharp
public void ConfigureServices(IServiceCollection services)
{
services.AddQuartzmin();
}public void Configure(IApplicationBuilder app)
{
app.UseQuartzmin(new QuartzminOptions()
{
Scheduler = StdSchedulerFactory.GetDefaultScheduler().Result
});
}
```## Notes
In clustered environment, it make more sense to host Quarzmin on single dedicated Quartz.NET node in standby mode and implement own `IExecutionHistoryStore` depending on database or ORM framework you typically incorporate. Every clustered Quarz.NET node should be configured with `ExecutionHistoryPlugin` and only dedicated node for management may have `QuartzminPlugin`.## License
This project is made available under the MIT license. See [LICENSE](LICENSE) for details.