Rimuovi il { "$sum": 1 }
e { "$sum": 0 }
espressioni nel tuo if/else
blocchi condizionali, sostituirli con i valori 1 e 0 (rispettivamente per ogni blocco condizionale).
La pipeline finale dovrebbe essere simile a questa, utilizzando l'altro $cond
sintassi che omette if/else
blocchi:
db.names.aggregate([
{
"$group": {
"_id": "$name",
"error": {
"$sum": {
"$cond": [ { "$eq": [ "$loglevel", "ERROR" ] }, 1, 0]
}
},
"warning":{
"$sum": {
"$cond": [ { "$eq": [ "$loglevel", "WARNING" ] }, 1, 0 ]
}
},
"info": {
"$sum": {
"$cond": [ { "$eq": [ "$loglevel", "INFO" ] }, 1, 0 ]
}
}
}
}
])
Oppure crea dinamicamente la pipeline, data una serie di possibili stati:
var statuses = ["ERROR", "WARNING", "INFO"],
groupOperator = { "$group": { "_id": "$name" } };
statuses.forEach(function (status){
groupOperator["$group"][status.toLowerCase()] = {
"$sum": {
"$cond": [ { "$eq": [ "$loglevel", status ] }, 1, 0]
}
}
});
db.names.aggregate([groupOperator]);
Risultato
/* 1 */
{
"_id" : "t1",
"error" : 2,
"warning" : 3,
"info" : 1
}
/* 2 */
{
"_id" : "t2",
"error" : 4,
"warning" : 0,
"info" : 1
}
/* 3 */
{
"_id" : "t3",
"error" : 0,
"warning" : 0,
"info" : 1
}