From c3b4a424a05fb7ba4de52377cf7ad73b3d72a6ff Mon Sep 17 00:00:00 2001 From: lisaSW Date: Fri, 26 Aug 2022 11:13:56 -0600 Subject: [PATCH] fixed breaking proxy beacons aggregtion step typo --- pkg/beaconproxy/dissector.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/beaconproxy/dissector.go b/pkg/beaconproxy/dissector.go index 98af0b21..3a771257 100644 --- a/pkg/beaconproxy/dissector.go +++ b/pkg/beaconproxy/dissector.go @@ -90,7 +90,7 @@ func (d *dissector) start() { {"$group": bson.M{ "_id": "$_id", "ts": bson.M{"$addToSet": "$ts"}, - "ts_full": bson.M{"$push": "$ts_full"}, + "ts_full": bson.M{"$push": "$ts"}, "count": bson.M{"$first": "$count"}, }}, {"$project": bson.M{