Getting workers

BullMQ Proxy provides a simple api to return all the registered workers in the system. Just call the /workers endpoint with the "GET" http verb:

curl --location 'http://mydomain.dev/workers/my-queue' \
--header 'Authorization: Bearer my-secret-token'

Currently it only returns the workers that are registered in the system and that should be running, however, things like disconnections to Redis™ hosts could prevent the workers from actually process any jobs. Use a BullMQ dashboard tool in order to get a better view of your queues and running workers.

Last updated