Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Am I correct in assuming that Visits metric only counts how many times a user started session on the given page, and Unique Pageview is the number of users whom viewed the given page?

Given the following scenario, I have two pages on my site: Page A and Page B. Page A contains a link to get to Page B.

If a user starts browsing my website at Page A, Google Analytics will increment Visits and Unique Pageviews on A by 1.

Now if the user were to click on the link to B, will Google Analytics increment both Visits and Unique Pageviews or just Unique Pageviews on B?

share|improve this question

1 Answer

up vote 1 down vote accepted

Am I correct in assuming that ‘Visits’ metric only counts how many times a user started session on the given page, and ‘Unique Pageview’ is the number of users whom viewed the given page?

No, pageview is every time tracking code is executed (or _trackPageview() is called) and unique pageviews is the aggregate pageviews that are generated by the same user during the same session.

Unique Pageviews/Unique Views : http://support.google.com/googleanalytics/bin/answer.py?hl=en&answer=47813

Pageview : http://support.google.com/googleanalytics/bin/answer.py?hl=en&answer=33050

share|improve this answer
I didn't take in to account that 'Unique Pageview' can be incremented if a new session is created. Thanks. – Frison B Alexander Jul 24 '12 at 17:48
If you believe I have answered your question to your satisfactory, it is customary to mark it as answered. – Anthony Hatzopoulos Jul 24 '12 at 17:56
1  
Perhaps I should have asked this as two different questions, here is the answer to the scenario: link. So, only Unique Pageviews will be incremented, not visits. – Frison B Alexander Jul 24 '12 at 18:06
According to your referenced article (at the bottom) it says UPDATE: As of June, 2012, GA has acknowledged the issue with “visits” in the page-level custom variable report by replacing it with a new metric called Visit Starts. So now if your making custom reports it will be different and you will select 'Visit Starts' – Anthony Hatzopoulos Jul 24 '12 at 18:27
Update to sessions in Google analytics: analytics.blogspot.ca/2011/08/… – Anthony Hatzopoulos Jul 24 '12 at 18:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.