RxJS operator to filter log stream by timestamp
Minimum timestamp (milliseconds)
Operator function that filters logs after timestamp
// Only logs from last minutelogs$.pipe(filterSince(Date.now() - 60000)).subscribe(...) Copy
// Only logs from last minutelogs$.pipe(filterSince(Date.now() - 60000)).subscribe(...)
RxJS operator to filter log stream by timestamp