Database
[{"_id":"eyxwapfhiezfe664ec","orderPrice":20,"responseTime":10,"createdAt":"2021-01-15T17:16:25.844Z"},{"_id":"eyxwlcfeojrfeoc","orderPrice":50,"responseTime":10,"createdAt":"2021-01-15T17:16:25.844Z"},{"_id":"eyxwapfhiseflflpsssc","orderPrice":20,"responseTime":7,"createdAt":"2021-01-15T17:16:25.844Z"},{"_id":"eyxwapfhdfghkdfps","orderPrice":12,"responseTime":5,"createdAt":"2021-01-16T17:16:25.844Z"},{"_id":"eyxwapfhiezzefllc","orderPrice":30,"responseTime":10,"createdAt":"2021-01-16T17:16:25.844Z"}]
Query
db.collection.aggregate([{"$facet":{"metricsTotal":[{$group:{_id:null,sumOrderPrice:{$sum:"$orderPrice"},avgOrderPrice:{$avg:"$orderPrice"},sumResponseTime:{$sum:"$responseTime"},avgResponseTime:{$avg:"$responseTime"}}}],"metricsByDay":[{$group:{_id:{$dateFromParts:{"year":{"$year":{$dateFromString:{"dateString":"$createdAt",}}},"month":{"$month":{$dateFromString:{"dateString":"$createdAt",}}},"day":{"$dayOfMonth":{$dateFromString:{"dateString":"$createdAt",}},}}},sumOrderPrice:{$sum:"$orderPrice"},avgOrderPrice:{$avg:"$orderPrice"},sumResponseTime:{$sum:"$responseTime"},avgResponseTime:{$avg:"$responseTime"}}}]}}])