-
Notifications
You must be signed in to change notification settings - Fork 293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to know user spent time on page #345
Comments
Use the t_done value from that beacon |
Thanks for your reply. I think that I could find the time which user stayed a page with the same session and the same page id in the history data and compare the values. However, it can take a lot of time in a lot of data, so I asked if we could know the corresponding value from the unload beacon. (above example, 30 sec) Thanks in advance. |
May be a bug in |
Thanks for your reply. But unload beacon (rt.quit exist), rt.end - rt.start not represent page stay time. It only equal to t_done. |
Unless you have a SPA, nt_load_end and rt.tstart are always the timestamp of the navigation start of the page. They will be the same for all beacons on the same navigation. For single page apps there are multiple navigations in a single page, so maybe that is what you're seeing. |
Thnaks for your reply. |
Hi, I use boomerang script.
I want to know the amount of time a user spends on a page.
In boomerang document,
"
rt.quit
: This parameter will exist (but have no value) if the beacon was fired as part of theonbeforeunload
event. This is typically used to find out how much time the user spent on the page before leaving "For page unload beacon(rt.quit exist) , what value I used to find out how long user stayed in page.
I kept checking the source, but I couldn't find out exactly, so I'm asking.
The text was updated successfully, but these errors were encountered: