romanzipp / Laravel-Queue-Monitor

Monitoring Laravel Jobs with your Database
https://packagist.org/packages/romanzipp/laravel-queue-monitor
MIT License
693 stars 91 forks source link

[Feature] Update DURATION on Running task #51

Closed javis closed 3 years ago

javis commented 3 years ago

Being able to elapsed time of unfinished jobs is particuylarly useful for long running task, please update the "Duration" column on each progress update

image

romanzipp commented 3 years ago

The property used within the view actually didn't exist.

I've added two new methods and updated the view 👍

public function getElapsedSeconds(Carbon $end = null): float
public function getElapsedInterval(Carbon $end = null): CarbonInterval
javis commented 3 years ago

Great! Thanks!