diff options
Diffstat (limited to 'src/daemons/notes-stats.ts')
| -rw-r--r-- | src/daemons/notes-stats.ts | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/daemons/notes-stats.ts b/src/daemons/notes-stats.ts new file mode 100644 index 0000000000..3094c34af0 --- /dev/null +++ b/src/daemons/notes-stats.ts @@ -0,0 +1,20 @@ +import * as childProcess from 'child_process'; +import Xev from 'xev'; + +const ev = new Xev(); + +export default function() { + const log = []; + + const p = childProcess.fork(__dirname + '/notes-stats-child.js'); + + p.on('message', stats => { + ev.emit('notesStats', stats); + log.push(stats); + if (log.length > 100) log.shift(); + }); + + ev.on('requestNotesStatsLog', id => { + ev.emit('notesStatsLog:' + id, log); + }); +} |