Skip to content

Add event tracking data to sessions cube

Max Woolf requested to merge mw/add-event-context-to-sessions-cube into main

To avoid joining the sessions cube to the TrackedEvents cube, we can add those columns/dimensions directly to the sessions cube.

Example query:

{
  "measures": [
    "Sessions.count"
  ],
  "timeDimensions": [
    {
      "dimension": "Sessions.startAt"
    }
  ],
  "order": {
    "Sessions.count": "desc"
  },
  "dimensions": [
    "Sessions.parsedUaUaFamily"
  ]
}
Edited by Max Woolf

Merge request reports