-
In the startup code, it shows how pass queue names to createBullBoard method. But my queues are dynamic in nature and created at runtime. Their names are also dynamic. How to fetch them all without explicitly passing their names? E.g.
This should pick up all BullMQ queues from Redis. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Bull-board doesn't support that, actually it doesn't access Redis at all.
|
Beta Was this translation helpful? Give feedback.
Bull-board doesn't support that, actually it doesn't access Redis at all.
You can fetch all queue names from ever you want (Redis / DB) and add them dynamically to the Board.
createBullBoard
method returns you an object withsetQueues
,replaceQueues
,addQueue
,removeQueue
related to the queues.