Ingestion
Your apps send events; they land in the analytics warehouse; and the Raw Events explorer shows them exactly as the warehouse sees them — so you can watch data arrive and open any single event in full.
Event types
Everything a query reads is one of these — a typed record with a context, a device, and a payload.
A visit or app run — the container other events belong to.
A click, tap, or gesture on a named element.
Something was shown — an item, a placement, a card.
A goal reached — a finish, a conversion, a milestone.
A new install or first run of an app.
A captured error, with its message, type, and stack trace.
Raw Events explorer
The Raw Events explorer is a live window onto ingestion. Filter by event type, by a time range, or by app, session, or user, page through the results, and click any row to open the full event.
It's queries all the way down
The Raw Events page isn't a special view — it's a saved, parameterized query running through the very same query layer that powers every chart and dashboard. Edit that query and you change what the page shows.
SELECT * FROM events
WHERE created >= :start_date
AND created <= :end_date
ORDER BY created DESC
OFFSET :offset ROWS FETCH NEXT :page_size ROWS ONLYKeep exploring
How events become queries, charts, and dashboards.
Saved SQL with typed parameters — the single source of truth for every chart.
Bind a query to a chart, then lay charts out on a grid that shares parameters.
Grouped errors, stack traces, and AI-generated root-cause hints.