BullMQ Proxy
  • What is BullMQ Proxy
  • Getting started
    • Architecture overview
    • Using Dragonfly
  • HTTP API
    • Authentication
    • Queues
      • Adding jobs
        • Retries
        • Delayed jobs
        • Prioritized
        • Repeatable
        • LIFO
        • Custom Job IDs
      • Getting jobs
      • Queue's actions
      • Reference
    • Workers
      • Endpoints
      • Adding workers
        • Concurrency
        • Rate-Limit
        • Removing finished jobs
        • Stalled jobs
        • Timeouts
      • Removing workers
      • Getting workers
      • Reference
    • Jobs
      • Jobs' actions
        • Update job progress
        • Add job logs
      • Reference
    • Configuration
    • Debugging
Powered by GitBook
On this page
  1. HTTP API
  2. Workers

Getting workers

PreviousRemoving workersNextReference

Last updated 1 year ago

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 tool in order to get a better view of your queues and running workers.

dashboard