sharkey/src/daemons/notes-stats-child.ts

27 lines
404 B
TypeScript
Raw Normal View History

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