Execution time of job scheduler

Hi,

In quartz plugin we had last fire date of schduler can we store and display when the schduler run i.e last fire date and when it end.

Start time and end time of schduler when schduler has run and also can we audit every schuler time when it has run and end.

Hi,

Quartz addon doesn’t store info about execution duration or completion date (only last\next fire dates and start-end dates represents range of trigger activity).

But you can track job execution on your own by using special Job listener.
Use the ‘jobWasExecuted’ method - it calls when job execution is done.
Detect necessary jobs (this listener tracks all jobs) by using context and do whatever you need - output to log, store to database, etc.

Best regards.

Thank you