Is your feature request related to a problem? Please describe.
I cannot easily group discrete user actions (clicks, scrolls, etc.) back to the specific page load instance where they occurred. Analyzing the exact sequence of events within a single page visit is currently fragmented.
Describe the solution you'd like
Automatically generate a unique page_view_id (UUID) upon each page load. Append this ID as a standard property to all subsequent events fired during that specific page's lifecycle.
Describe alternatives you've considered
Session IDs: Too broad; groups events across multiple distinct pages.
URL paths: Fails to isolate multiple visits to the same URL within a session.
Timestamp matching: Highly unreliable and complex to query accurately.
Additional context
This is especially critical for accurate funnel analysis and for tracking interactions in Single Page Applications (SPAs) where traditional page loads do not occur.
Is your feature request related to a problem? Please describe.
I cannot easily group discrete user actions (clicks, scrolls, etc.) back to the specific page load instance where they occurred. Analyzing the exact sequence of events within a single page visit is currently fragmented.
Describe the solution you'd like
Automatically generate a unique page_view_id (UUID) upon each page load. Append this ID as a standard property to all subsequent events fired during that specific page's lifecycle.
Describe alternatives you've considered
Session IDs: Too broad; groups events across multiple distinct pages.
URL paths: Fails to isolate multiple visits to the same URL within a session.
Timestamp matching: Highly unreliable and complex to query accurately.
Additional context
This is especially critical for accurate funnel analysis and for tracking interactions in Single Page Applications (SPAs) where traditional page loads do not occur.