Database

[{"ip":"79.xxx.xxx.117","date":"2022-10-19","page":"/","time":{"time":ISODate("2022-10-19T11:35:44.655Z"),"tz":"-120","_id":"634fe1100a011986b7137da0"},"createdAt":ISODate("2022-10-19T11:35:44.920Z")},{"ip":"79.xxx.xxx.117","date":"2022-10-19","page":"/2","time":{"time":ISODate("2022-10-19T12:14:29.536Z"),"tz":"-120","_id":"634fea257acb264f23d421f1"},"createdAt":ISODate("2022-10-19T12:14:29.536Z")},{"ip":"79.xxx.xxx.117","date":"2022-10-19","page":"/","time":{"time":ISODate("2022-10-19T15:37:30.002Z"),"tz":"-120","_id":"634fea266001ea364eeb38ea"},"createdAt":ISODate("2022-10-19T15:37:30.002Z")},{"ip":"79.xxx.xxx.118","date":"2022-10-19","page":"/","time":{"time":ISODate("2022-10-19T11:35:44.655Z"),"tz":"-120","_id":"634fe1100a011986b7137da0"},"createdAt":ISODate("2022-10-19T11:35:44.920Z")},]

Query

db.collection.aggregate([{$setWindowFields:{partitionBy:{$concat:["$ip","$date"]},sortBy:{"time.time":1},output:{prevtime:{$push:"$time.time",window:{documents:[-1,"current"]}}}}},{$addFields:{minutesDiff:{$toInt:{$dateDiff:{startDate:{$first:"$prevtime"},endDate:{$last:"$prevtime"},unit:"minute"}}}}},{$addFields:{deltaIndex:{$cond:[{$gt:["$minutesDiff",120]},1,0]}}},{$setWindowFields:{partitionBy:{$concat:["$ip","$date"]},sortBy:{"time.time":1},output:{groupIndex:{$sum:"$deltaIndex",window:{documents:["unbounded","current"]}},duration:{$push:"$minutesDiff",window:{documents:["current",1]}}}}},{$set:{duration:{$cond:[{$and:[{$eq:[{$size:"$duration"},2]},{$lte:[{$last:"$duration"},120]}]},{$last:"$duration"},2]}}},{$group:{_id:{ip:"$ip",myDate:"$date",groupIndex:"$groupIndex"},"date":{$first:"$date"},"allVisitedPages":{$push:{page:"$page",time:"$time",duration:"$duration"}},visitedPages:{$sum:1}}},{$unset:"_id.groupIndex"}])

Result