misskey/src/notes-stats-child.ts

23 lines
378 B
TypeScript
Raw Normal View History

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