yumechi-no-kuni/src/daemons/notes-stats-child.ts

27 lines
404 B
TypeScript
Raw Normal View History

2018-06-10 16:48:25 -05:00
import Note from '../models/note';
2018-06-08 14:14:26 -05:00
2018-06-08 20:12:03 -05:00
const interval = 5000;
2018-06-10 16:48:25 -05:00
async function tick() {
2018-06-08 14:14:26 -05:00
const [all, local] = await Promise.all([Note.count({
createdAt: {
2018-06-08 20:12:03 -05:00
$gte: new Date(Date.now() - interval)
2018-06-08 14:14:26 -05:00
}
}), Note.count({
createdAt: {
2018-06-08 20:12:03 -05:00
$gte: new Date(Date.now() - interval)
2018-06-08 14:14:26 -05:00
},
'_user.host': null
})]);
const stats = {
all, local
};
process.send(stats);
2018-06-10 16:48:25 -05:00
}
tick();
setInterval(tick, interval);