Reputation: 13771
The Setup
I'm using Laravel 5.1 to build an application that processes a large number of media files. To handle the processing I've decided to use the built in queue services for some of the more labor intensive pieces of the process. I'm using the database driver.
The Need
I would like to create a dashboard so that non-technical administrators can know what processes are being run, and generally monitor the activity of the system. This means I would like to show them failed jobs, queued jobs, and in progress jobs.
Specifically I have the following questions:
Also I imagine I'm not the first to want a UI around the queue, so: anything already out there I'm missing?
Upvotes: 2
Views: 3948
Reputation: 2010
For anyone interesting in this still, please use Laravel Horizon. https://laravel.com/docs/5.8/horizon
Upvotes: 2
Reputation: 6153
I think you should use a service like Iron.
I also found something here: phpBeanstalkdAdmin. You may also use this.
Upvotes: 0