Using Google Analytics to determine how much time a visitor spends in each section of my site
Posted
by
flossfan
on Pro Webmasters
See other posts from Pro Webmasters
or by flossfan
Published on 2014-06-05T14:35:49Z
Indexed on
2014/06/06
9:41 UTC
Read the original article
Hit count: 351
google-analytics
|analytics-api
I have a site with various pages, like:
/about/history
/about/team
/contact/email-us
/contact
I want to figure out how much time people are spending on the entire /about section, and how much on the /contact section.
If I run a query on the Google Analytics API and set the dimension to ga:pagePathLevel1 and the metric to ga:avgTimeOnPage, I get results like this:
{ pagePathLevel1: /about, avgTimeOnPage: 28 },
{ pagePathLevel1: /contact, avgTimeOnPage: 10 }
This looks roughly like what I want, but I'm not sure how to intepret it:
- Is the value of
avgTimeOnPagethe average time spent by any user on all pages that match that path? - Or is it the average time spent by any user on
anysingle page that matches that path?
I'm looking for the average time spent across all pages matching that path, but the time estimates look shorter than I'd expect.
© Pro Webmasters or respective owner