Integrations
GroupMQ Integration
Connect Queuedash to your GroupMQ queues.
GroupMQ is supported alongside BullMQ, Bull, and Bee-Queue. The SDK auto-detects it and starts streaming events.
Attach a queue
import { Queue } from "groupmq";
import { Queuedash } from "@queuedash/sdk";
const qd = new Queuedash({
apiKey: process.env.QUEUEDASH_API_KEY,
});
const myQueue = new Queue("my-queue", { connection: { host: "localhost", port: 6379 } });
qd.attach(myQueue); // that's itTracked events
addedactivecompletedfailed
Use alerts to catch failed or stalled jobs, and keep GroupMQ alongside other queues in one view.