mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 20:43:08 +02:00
22 lines
378 B
TypeScript
22 lines
378 B
TypeScript
import Note from './models/note';
|
|
|
|
const interval = 5000;
|
|
|
|
setInterval(async () => {
|
|
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);
|
|
}, interval);
|