Created
August 21, 2014 12:53
Soapower - useful query
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Count request per environment | |
db.requestData.aggregate( [ { $group : { _id : "$environmentName", count: { $sum: 1 } } } ] ); | |
// Count all services | |
db.environments.aggregate( | |
[ | |
{ $unwind : "$services" }, | |
{ $group : { _id : null, number : { $sum : 1 } } } | |
] | |
); | |
// Count all services per environment | |
db.environments.aggregate( | |
[ | |
{ $unwind : "$services" }, | |
{ $group : { _id : "$name", number : { $sum : 1 } } }, | |
{ $sort: { "_id": 1 } } | |
] | |
); | |
// Size in MB of requestData collection | |
db.requestData.stats(1024*1024).size | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment