Gearman gearadmin command line tool status output meaning Gearman gearadmin command line tool status output meaning php php

Gearman gearadmin command line tool status output meaning


  • Function Name
  • Number in queue
  • Number of jobs running
  • Number of capable workers

https://preilly.me/monitoring-gearman-over-telnet-port-4730/


Since this is the only question related to output of command gearadmin --status, allow me to share a quick tip for pretty printing the output of this command.

gearadmin  --status | sort -n | column -t

This becomes useful when you have a lot of different workers and their relative counts matter. I always have one tab of my terminal where I run the following command to watch queue length and worker count go up and down in realtime. Well, realtime enough.

watch "gearadmin  --status | sort -n | column -t"