Reputation: 14135
We develop a suite of PHP SASS applications and we use Gearman to process tasks in the background both synchronously and asynchronously. We love everything Gearman has to offer but we've beginning to find the administration of the queue to becoming tedious.
Has anyone here had experience with a Web UI for Gearman that allows you to see all job servers and jobs queued on them?
Or any suggestion for alternative to Gearman that will run easily on LAMP stack and has good PHP library support, and a Web UI ofcause?
Upvotes: 8
Views: 7106
Reputation: 81
I've just published a new Gearman UI. It is sort of an updated version of Gearman Monitor, built on AngularJS and Silex: Gearman UI.
I hope you find it useful.
Upvotes: 6
Reputation: 4031
there is a recommended tool taken from the gearman website : https://github.com/yugene/Gearman-Monitor
Upvotes: 2
Reputation: 2309
There's gearman-stat.psgi
. A small Perl script build upon Plack which makes it very easy to run this script as a stand-alone HTTP server, CGI or FCGI script, as well as mod_perl. Even if you don't want to use it you can take a look at the source code to see how it is fetching statistics.
Upvotes: 2