Użyj następującego potoku agregacji:
db.click_log.aggregate([
{ "$match" : { "log.type" : { "$ne" : "emailed" } } }, // get rid of docs with an "emailed" value in log.type and docs not from this month
{ "$unwind" : "$log" }, // unwind to get log elements as separate docs
{ "$project" : { "_id" : 1, "log" : 1, "month" : { "$month" : "$log.utc_timestamp" } } },
{ "$match" : { "log" : "clicked", "month" : <# of month> } }, // get rid of log elements not from this month and that aren't type clicked
{ "$group" : { "_id" : "$_id", "count" : { "$sum" : 1 } } } // collect clicked elements from same original doc and count number
])
Zwróci to dla każdego dokumentu, który nie został „wysłany e-mailem” jako wartość log.type
, liczba elementów tablicy log
które mają log.type
wartość clicked
oraz ze znacznikiem czasu z bieżącego miesiąca. Jeśli chcesz mieć przesuwany 30-dniowy okres dla miesiąca, zmień $match
być zapytaniem zakresu z $gt
i $lt
obejmujące żądany okres.