1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-01 23:15:47 +02:00
This commit is contained in:
syuilo
2018-06-11 06:48:25 +09:00
parent e70fb71a04
commit dc3c80e3ce
8 changed files with 140 additions and 7 deletions

View File

@@ -0,0 +1,26 @@
import Note from '../models/note';
const interval = 5000;
async function tick() {
const [all, local] = await Promise.all([Note.count({
createdAt: {
$gte: new Date(Date.now() - interval)
}
}), Note.count({
createdAt: {
$gte: new Date(Date.now() - interval)
},
'_user.host': null
})]);
const stats = {
all, local
};
process.send(stats);
}
tick();
setInterval(tick, interval);