Mobile app version of vmapp.org
Login or Join
Megan663

: Google Analytics: average time it take users to trigger an event I implemented Google Analytics event tracking on my currency conversion website. The typical user flow is: User lands on a

@Megan663

Posted in: #EventTracking #GoogleAnalytics

I implemented Google Analytics event tracking on my currency conversion website. The typical user flow is:


User lands on a page about two currencies.
User enters an amount to be converted.
The site shows the user the value in the other currency.


The JavaScript sends Google Analytics an "converted" event when the currency conversion is done. Because most of the sessions on my site are single page, the event tracking is very important to me to be able to know if users find my page useful.

I'm looking for a way to be able to figure out how long it typically takes users to enter a value in the form. I expect that this data would form a bell curve with around a specific amount of time after page load. If I can't get a graph, I could make do with a median value. I would like to be able to use this as a core metric around usability testing.

Is there a way to get this information out of Google Analytics?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Megan663

1 Comments

Sorted by latest first Latest Oldest Best

 

@Bryan171

To get a histogram or distribution use user timings. They conveniently go with your use case of tracking form timing. When the page loads you start a timer, then when you send the "converted" event you also send a user timing hit.

Don't forget to set the sample rate parameter or only 1% will be collected, unless you have already set _setSiteSpeedSampleRate.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme