Hi,
I want to monitor if jobs are getting picked up from a particular queue or not.
Currently I was doing this by firing ./gearadmin --status and checking the diff. If diff is non zero then there is something failed.
If something failed I will repeat this process 4 times with 5 minute delay. If all returned failed I was generating alert.
This was working fine when load was low but this approach will not work with high load. As there can be chances that there is newborn job which was not picked by some worker.
Is there admin command to find out last picked up job time and next pending job creation time?
or
Is there any better way to monitor the queue status ?