2023-05-29 02:54:49 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-17 18:27:08 +00:00
|
|
|
import Xev from 'xev';
|
2023-05-29 02:54:49 +00:00
|
|
|
import * as Bull from 'bullmq';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { QueueService } from '@/core/QueueService.js';
|
2022-12-04 06:03:09 +00:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2023-05-29 02:54:49 +00:00
|
|
|
import { DI } from '@/di-symbols.js';
|
|
|
|
import type { Config } from '@/config.js';
|
|
|
|
import { QUEUE, baseQueueOptions } from '@/queue/const.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import type { OnApplicationShutdown } from '@nestjs/common';
|
|
|
|
|
|
|
|
const ev = new Xev();
|
|
|
|
|
|
|
|
const interval = 10000;
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class QueueStatsService implements OnApplicationShutdown {
|
2022-09-18 18:11:50 +00:00
|
|
|
private intervalId: NodeJS.Timer;
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
constructor(
|
2023-05-29 02:54:49 +00:00
|
|
|
@Inject(DI.config)
|
|
|
|
private config: Config,
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
private queueService: QueueService,
|
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Report queue stats regularly
|
|
|
|
*/
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public start(): void {
|
|
|
|
const log = [] as any[];
|
|
|
|
|
|
|
|
ev.on('requestQueueStatsLog', x => {
|
|
|
|
ev.emit(`queueStatsLog:${x.id}`, log.slice(0, x.length ?? 50));
|
|
|
|
});
|
|
|
|
|
|
|
|
let activeDeliverJobs = 0;
|
|
|
|
let activeInboxJobs = 0;
|
|
|
|
|
2023-05-29 02:54:49 +00:00
|
|
|
const deliverQueueEvents = new Bull.QueueEvents(QUEUE.DELIVER, baseQueueOptions(this.config, QUEUE.DELIVER));
|
|
|
|
const inboxQueueEvents = new Bull.QueueEvents(QUEUE.INBOX, baseQueueOptions(this.config, QUEUE.INBOX));
|
|
|
|
|
|
|
|
deliverQueueEvents.on('active', () => {
|
2022-09-17 18:27:08 +00:00
|
|
|
activeDeliverJobs++;
|
|
|
|
});
|
|
|
|
|
2023-05-29 02:54:49 +00:00
|
|
|
inboxQueueEvents.on('active', () => {
|
2022-09-17 18:27:08 +00:00
|
|
|
activeInboxJobs++;
|
|
|
|
});
|
|
|
|
|
|
|
|
const tick = async () => {
|
|
|
|
const deliverJobCounts = await this.queueService.deliverQueue.getJobCounts();
|
|
|
|
const inboxJobCounts = await this.queueService.inboxQueue.getJobCounts();
|
|
|
|
|
|
|
|
const stats = {
|
|
|
|
deliver: {
|
|
|
|
activeSincePrevTick: activeDeliverJobs,
|
|
|
|
active: deliverJobCounts.active,
|
|
|
|
waiting: deliverJobCounts.waiting,
|
|
|
|
delayed: deliverJobCounts.delayed,
|
|
|
|
},
|
|
|
|
inbox: {
|
|
|
|
activeSincePrevTick: activeInboxJobs,
|
|
|
|
active: inboxJobCounts.active,
|
|
|
|
waiting: inboxJobCounts.waiting,
|
|
|
|
delayed: inboxJobCounts.delayed,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
ev.emit('queueStats', stats);
|
|
|
|
|
|
|
|
log.unshift(stats);
|
|
|
|
if (log.length > 200) log.pop();
|
|
|
|
|
|
|
|
activeDeliverJobs = 0;
|
|
|
|
activeInboxJobs = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
tick();
|
|
|
|
|
2022-09-18 18:11:50 +00:00
|
|
|
this.intervalId = setInterval(tick, interval);
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2023-05-29 04:21:26 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2023-05-29 04:21:26 +00:00
|
|
|
public dispose(): void {
|
2022-09-18 18:11:50 +00:00
|
|
|
clearInterval(this.intervalId);
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2023-05-29 04:21:26 +00:00
|
|
|
|
|
|
|
@bindThis
|
|
|
|
public onApplicationShutdown(signal?: string | undefined): void {
|
|
|
|
this.dispose();
|
|
|
|
}
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|