Skip to content

Instantly share code, notes, and snippets.

@alkampfergit
Created September 1, 2015 10:38
Show Gist options
  • Save alkampfergit/0ea3b0772a38ff7bc833 to your computer and use it in GitHub Desktop.
Save alkampfergit/0ea3b0772a38ff7bc833 to your computer and use it in GitHub Desktop.
Get count of events in NEventstore backed up by MongoDb
db.getCollection('Commits').aggregate([
{$unwind : "$Events"},
{$project : {"Events.Payload.Body._t" : 1, _id : -1}},
{$group : {_id : "$Events.Payload.Body._t" , count : {$sum : 1}}}
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment