misskey/src/notes-stats-child.ts

23 lines
378 B
TypeScript
Raw Normal View History

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