Here is how to find duplicates in MongoDB:
db.consumption.aggregate([{$group: {_id: {"StartDate":"$StartDate", "Type": "$Type", "Volume": "$Volume"}, "count": { "$sum": 1 }}}, {"$sort": {"count" : -1} }])2
This shows duplicates with the same StartDate, Type, Volume, and shows the duplicate counts as count.