Handling domain events with GetEventStore is straight forward. We have an event stream per aggregate instance. But what about non-domain events? How do you guys organize those events? A stream per bound context? A stream per event type? Or a single stream for all domain events but adding some BC specific meta data?
Or is this a minor concern?