上周四,我对 GA 脚本进行了更改——我添加了增强的链接属性并添加了 setDomainName 属性。从那时起,我们的大部分统计数据都很好,但平均访问持续时间已经完全疯了。
我们从平均约 4 分钟/次访问到每天早上在访问时间超过两个小时的午夜后出现大幅高峰。我认为这一定是我做错了什么,因为它在我部署更改的同一个小时开始失控。
在找出原因之前,我不想对生产进行更改 - 任何帮助或建议将不胜感激。
平均访问持续时间的每小时分析:
当前的 GA 脚本
var _gaq = _gaq || [];
var pluginUrl = '//www.google-analytics.com/plugins/ga/inpage_linkid.js';
_gaq.push(['_require', 'inpage_linkid', pluginUrl]);
_gaq.push(['_setCustomVar', 1, 'Locale', 'en_CA', 2]);
_gaq.push(['_setAccount', 'REDACTED']);
_gaq.push(['_setSiteSpeedSampleRate', 10 ]);
_gaq.push(['_setDomainName', 'REDACTED']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();