Strange Problem In Google Analytics


Google analytics Time Spent on page

Satama’s analysts have noticed an anomoloy on a couple of Google accounts they’re running. They wanted me to help spread the word to find out if this actually an error within GA that others are experiencing or whether it is a scripting error they need to fix. The site was an Intranet and the problem appears to be that while time on the page is only 17 seconds (and only 2 pages viewed) the average time on page over 7 hours which is of course incorrect. Google have also been contacted and Satama are still investigating.

Information and Links

Join the fray by commenting, tracking what others have to say, or linking to it from your blog.


Other Posts
Satama Recruit a top web analytics practitioner in Sweden
Microsoft to buy Fast?

Write a Comment

Take a moment to comment and tell us what you think. Some basic HTML is allowed for formatting.

Reader Comments

Well, I checked several accounts and profiles but did not see this issue.
Is there a way they can provide access to the reports?

Today I noticed that Google’s Analytics CODE was WRONG…it’s missing a carot at the end of a javascript string used to mark the end of the line (how does a programmer with a sweet job at Google mess up something so simple…). This problem caused me to waste the whole weekend for a client site after installinkg the WRONG code on Thursday and thinking it would be all full of data by Monday.

The code they are using (the new version) is :

var gaJsHost = ((”https:” == document.location.protocol) ? “https://ssl.” : “http://www.”);
document.write(unescape(”%3Cscript src=’” + gaJsHost + “google-analytics.com/ga.js’ type=’text/javascript’%3E%3C/script%3E”));

var pageTracker = _gat._getTracker(”UA-986914-4″);
pageTracker._initData();
pageTracker._trackPageview();

But it SHOULD read:

var gaJsHost = ((”https:” == document.location.protocol) ? “https://ssl.” : “http://www.”);
document.write(unescape(”%3Cscript src=’” + gaJsHost + “google-analytics.com/ga.js’ type=’text/javascript’%3E%3C/script%3E”));>

var pageTracker = _gat._getTracker(”UA-986914-4″);
pageTracker._initData();
pageTracker._trackPageview();