33 lines
1.4 KiB
TypeScript
33 lines
1.4 KiB
TypeScript
import { Inject, Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import type { DbQueue, DeliverQueue, EndedPollNotificationQueue, InboxQueue, ObjectStorageQueue, SystemQueue, WebhookDeliverQueue } from '@/core/QueueModule.js';
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
@Injectable()
|
|
export default class extends Endpoint<'admin/queue/stats'> {
|
|
name = 'admin/queue/stats' as const;
|
|
constructor(
|
|
@Inject('queue:system') public systemQueue: SystemQueue,
|
|
@Inject('queue:endedPollNotification') public endedPollNotificationQueue: EndedPollNotificationQueue,
|
|
@Inject('queue:deliver') public deliverQueue: DeliverQueue,
|
|
@Inject('queue:inbox') public inboxQueue: InboxQueue,
|
|
@Inject('queue:db') public dbQueue: DbQueue,
|
|
@Inject('queue:objectStorage') public objectStorageQueue: ObjectStorageQueue,
|
|
@Inject('queue:webhookDeliver') public webhookDeliverQueue: WebhookDeliverQueue,
|
|
) {
|
|
super(async (ps, me) => {
|
|
const deliverJobCounts = await this.deliverQueue.getJobCounts();
|
|
const inboxJobCounts = await this.inboxQueue.getJobCounts();
|
|
const dbJobCounts = await this.dbQueue.getJobCounts();
|
|
const objectStorageJobCounts = await this.objectStorageQueue.getJobCounts();
|
|
|
|
return {
|
|
deliver: deliverJobCounts,
|
|
inbox: inboxJobCounts,
|
|
db: dbJobCounts,
|
|
objectStorage: objectStorageJobCounts,
|
|
};
|
|
});
|
|
}
|
|
}
|