misskey/src/daemons/notes-stats.ts

27 lines
542 B
TypeScript
Raw Normal View History

2018-06-08 19:14:26 +00:00
import * as childProcess from 'child_process';
2018-08-13 23:21:25 +00:00
import * as Deque from 'double-ended-queue';
2018-06-08 19:14:26 +00:00
import Xev from 'xev';
const ev = new Xev();
2018-07-14 10:49:21 +00:00
export default function() {
2018-08-13 23:21:25 +00:00
const log = new Deque<any>();
2018-06-08 19:14:26 +00:00
const p = childProcess.fork(__dirname + '/notes-stats-child.js');
p.on('message', stats => {
ev.emit('notesStats', stats);
log.push(stats);
2018-08-13 22:49:59 +00:00
if (log.length > 100) log.pop();
2018-06-08 19:14:26 +00:00
});
ev.on('requestNotesStatsLog', id => {
2018-08-13 22:49:59 +00:00
ev.emit('notesStatsLog:' + id, log.toArray());
2018-06-08 19:14:26 +00:00
});
2018-07-13 15:39:39 +00:00
process.on('exit', code => {
process.kill(p.pid);
});
2018-06-08 19:14:26 +00:00
}