2023-10-30 09:58:37 +01:00
|
|
|
import { deliverQueue, inboxQueue } from "@/queue/queues.js";
|
2023-11-26 21:33:46 +01:00
|
|
|
import Xev from "xev";
|
2019-03-10 11:16:33 +01:00
|
|
|
|
2022-04-17 07:42:13 +02:00
|
|
|
const ev = new Xev();
|
2019-03-10 11:16:33 +01:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
const interval = 10000;
|
2019-03-10 11:16:33 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Report queue stats regularly
|
|
|
|
*/
|
2023-01-13 05:40:33 +01:00
|
|
|
export default function () {
|
2020-01-29 20:37:25 +01:00
|
|
|
const log = [] as any[];
|
2019-03-10 11:16:33 +01:00
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
ev.on("requestQueueStatsLog", (x) => {
|
2020-01-29 20:37:25 +01:00
|
|
|
ev.emit(`queueStatsLog:${x.id}`, log.slice(0, x.length || 50));
|
2019-03-10 11:16:33 +01:00
|
|
|
});
|
|
|
|
|
2019-03-12 02:35:17 +01:00
|
|
|
let activeDeliverJobs = 0;
|
|
|
|
let activeInboxJobs = 0;
|
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
deliverQueue.on("global:active", () => {
|
2019-03-12 02:35:17 +01:00
|
|
|
activeDeliverJobs++;
|
|
|
|
});
|
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
inboxQueue.on("global:active", () => {
|
2019-03-12 02:35:17 +01:00
|
|
|
activeInboxJobs++;
|
|
|
|
});
|
|
|
|
|
2019-03-10 11:16:33 +01:00
|
|
|
async function tick() {
|
|
|
|
const deliverJobCounts = await deliverQueue.getJobCounts();
|
|
|
|
const inboxJobCounts = await inboxQueue.getJobCounts();
|
|
|
|
|
|
|
|
const stats = {
|
2019-03-12 02:35:17 +01:00
|
|
|
deliver: {
|
2019-03-12 04:31:01 +01:00
|
|
|
activeSincePrevTick: activeDeliverJobs,
|
|
|
|
active: deliverJobCounts.active,
|
2019-03-12 02:35:17 +01:00
|
|
|
waiting: deliverJobCounts.waiting,
|
2021-12-09 15:58:30 +01:00
|
|
|
delayed: deliverJobCounts.delayed,
|
2019-03-12 02:35:17 +01:00
|
|
|
},
|
|
|
|
inbox: {
|
2019-03-12 04:31:01 +01:00
|
|
|
activeSincePrevTick: activeInboxJobs,
|
|
|
|
active: inboxJobCounts.active,
|
2019-03-12 02:35:17 +01:00
|
|
|
waiting: inboxJobCounts.waiting,
|
2021-12-09 15:58:30 +01:00
|
|
|
delayed: inboxJobCounts.delayed,
|
2019-05-27 10:23:05 +02:00
|
|
|
},
|
2019-03-10 11:16:33 +01:00
|
|
|
};
|
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
ev.emit("queueStats", stats);
|
2019-03-10 11:16:33 +01:00
|
|
|
|
|
|
|
log.unshift(stats);
|
|
|
|
if (log.length > 200) log.pop();
|
2019-03-12 02:35:17 +01:00
|
|
|
|
|
|
|
activeDeliverJobs = 0;
|
|
|
|
activeInboxJobs = 0;
|
2019-03-10 11:16:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
tick();
|
|
|
|
|
|
|
|
setInterval(tick, interval);
|
|
|
|
}
|