1
0
mirror of https://github.com/misskey-dev/misskey synced 2024-12-17 16:18:33 +09:00
misskey/src/daemons/queue-stats.ts

62 lines
1.3 KiB
TypeScript
Raw Normal View History

2019-03-10 19:16:33 +09:00
import * as Deque from 'double-ended-queue';
import Xev from 'xev';
import { deliverQueue, inboxQueue } from '../queue';
const ev = new Xev();
2019-03-15 13:09:19 +09:00
const interval = 2000;
2019-03-10 19:16:33 +09:00
/**
* Report queue stats regularly
*/
export default function() {
const log = new Deque<any>();
ev.on('requestQueueStatsLog', x => {
ev.emit(`queueStatsLog:${x.id}`, log.toArray().slice(0, x.length || 50));
});
2019-03-12 10:35:17 +09:00
let activeDeliverJobs = 0;
let activeInboxJobs = 0;
2019-03-12 16:42:56 +09:00
deliverQueue.on('global:active', () => {
2019-03-12 10:35:17 +09:00
activeDeliverJobs++;
});
2019-03-12 16:42:56 +09:00
inboxQueue.on('global:active', () => {
2019-03-12 10:35:17 +09:00
activeInboxJobs++;
});
2019-03-10 19:16:33 +09:00
async function tick() {
const deliverJobCounts = await deliverQueue.getJobCounts();
const inboxJobCounts = await inboxQueue.getJobCounts();
const stats = {
2019-03-12 10:35:17 +09:00
deliver: {
activeSincePrevTick: activeDeliverJobs,
active: deliverJobCounts.active,
2019-03-12 10:35:17 +09:00
waiting: deliverJobCounts.waiting,
2019-03-12 10:46:25 +09:00
delayed: deliverJobCounts.delayed
2019-03-12 10:35:17 +09:00
},
inbox: {
activeSincePrevTick: activeInboxJobs,
active: inboxJobCounts.active,
2019-03-12 10:35:17 +09:00
waiting: inboxJobCounts.waiting,
2019-03-12 10:46:25 +09:00
delayed: inboxJobCounts.delayed
2019-03-12 10:35:17 +09:00
}
2019-03-10 19:16:33 +09:00
};
ev.emit('queueStats', stats);
log.unshift(stats);
if (log.length > 200) log.pop();
2019-03-12 10:35:17 +09:00
activeDeliverJobs = 0;
activeInboxJobs = 0;
2019-03-10 19:16:33 +09:00
}
tick();
setInterval(tick, interval);
}