Skip to content

Instantly share code, notes, and snippets.

@FrancescaK
Created June 4, 2014 15:34
Show Gist options
  • Save FrancescaK/0f98e6509af8cce78611 to your computer and use it in GitHub Desktop.
Save FrancescaK/0f98e6509af8cce78611 to your computer and use it in GitHub Desktop.
buffer_5_agg_1
db.event.api.aggregate({
$match: {
date: {
$gt: ISODate("2014-05-08T20:02:33.133Z"),
$lt: ISODate("2014-05-09T20:02:33.133Z"),
}
}
}, {
$group: {
_id: {
endpoint: '$endpoint.name'
},
avgResponseTime: {
$avg: '$response_time'
},
count: {
$sum: 1
}
}
}, {
$sort: {
"count": -1
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment