I would like to create a sort of a ‘dashboard’ on a capped collection (which is used as a log table) on my Mongo database. This is how I create the collection: I do a collection.find(), with options tailable:true, awaitdata:true, and numberOfRetries:-1 (infinite retries). What puzzles me is that I’d expect the find().each() loop to wait for new data (messages)…