Extend cron jobs history

mike-gcs

Member
As the title says, is there a way to extend the cron jobs history. Right now, it is only the last 10 amount. I would like to increase it to at least have the last 72 hours (864 records at the 5-minute interval). This will help us to understand what was running and how long it took. Our example is the List-Import. We want to check on the performance over time. We did implement the Message so that we know it is completed. This does help a bit but does not have the record to explain the total seconds it took.

Thanks in advance.
 
Hello,
There is no hook in place so you can externally connect and change the number of rows to keep per command, so there is no way of doing this without modifying the core of the application. Here is the line of the code where this is happening apps/common/models/ConsoleCommandListHistory.php:256 . Pass a bigger number to deleteOlderRecords()
 
Thanks. I will do that for the upgrade I plan for this weekend. Hopefully a hook can be added so I don't have to remember each upgrade. Thank you.
 
@ghimes - do you think we can add a hook there?
Yes, we can do that.
Here: apps/common/models/ConsoleCommandListHistory.php:180 . Something like:
Code:
$keep = hooks()->applyFilters('console_command_list_history_model_delete_older_records_max_keep', $keep);

Not quite sure about the hook name

Cosmin
 
Hello,
We added the hook and it will be available in the next release. You will be able to use it in the apps/init-custom.php like:

Code:
hooks()->addFilter('console_command_list_history_model_delete_older_records_max_keep', function($keep){
    return 100;
})
 
Back
Top