Forum Discussion
Deleted
Dec 22, 2017Remove Duplicate Events in Group
Goal: Query AppInsights data for the pages a user has viewed over the course of their session.
The problem is that there are duplicate page views, each with the same timestamp. In the query below, ...
Deleted
Dec 22, 2017This seemed to do the job
```
pageViews
| summarize by session_Id, operation_Name, bin(timestamp, 1tick)
| sort by session_Id, timestamp asc
```