This is a Fork of James Cookie Grails Quatz Monitor plugin.
Allows you to view and administer all your Quartz jobs in one place.
This plugin requires the Quartz and Asset Pipeline plugins to run.
Once you have the Quartz plugin installed and have created some jobs, then you will probably start wondering if they are all running as desired. This is where you need the 'Quartz Monitor' plugin. Simply install the plugin and go to the URL: http://localhost:8080//quartz and you will find all a list of all the jobs you have scheduled to run.
To have the page keep you constantly up to date requires jQuery. It will still work without jQuery, but it won't look as good.
There are various configuration options, all start with quartz.monitor
:
Allows you to change the sitemesh layout that page will use. Defaults to 'main'.
If this is set to true, then the names of the job will be shown in the list.
If this is set to true, then the names of the triggers will be shown in the list - useful if you have multiple triggers for the same job.
Will add javascript to the page in order to show a countdown to when the job will fire next, unless this is set to 'false'.
Will add javascript to the page in order to show a clock with the current time, unless this is set to 'false'.
Set config in application.yml similar to this.
quartz:
monitor:
showJobNames: false
showTriggerNames: true
showCountdown: true
showTickingClock: true
layout: main
autoStartup: true
waitForJobsToCompleteOnShutdown: true
exposeSchedulerInRepository: false
threadPool:
class: 'org.quartz.simpl.SimpleThreadPool'
threadCount: 3
threadPriority: 5