我希望使用Google Analytic和Local Storage跟踪离线活动。 这是我的代码:
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-27966345-1']);
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_setSessionCookieTimeout',10]);
_gaq.push(['_setSampleRate', '400']);
_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);
})();
我只是将事件保存在本地存储空间中,当用户重新上线时,我尝试将事件发送给Google,但是当我将计数器与我在实时模式(Google Analytic)中看到的网页视图进行比较时,我可以不明白为什么他们不同。我认为是谷歌采样率或其他因为我测试了很多次,我看到不同的结果,有时结果是正确的,但有时会有1000或更多的差异。
以下是我发送事件的代码:
while(ctr>0){
if(sd==0){
sd=1;
alert(ctr);
}
//
if(flag==0)break;
var name='tosend';
var tosend_action=localStorage.getItem(name+'action'+ctr);
var tosend_label=localStorage.getItem(name+'label'+ctr);
var tosend_value=localStorage.getItem(name+'value'+ctr);
_gaq.push(['_trackEvent',value,tosend_action,tosend_label+"_val:"+tosend_value,tosend_value]);
_gaq.push(['_trackPageview',name+'value'+ctr]);
localStorage.removeItem(name+'action'+ctr);
localStorage.removeItem(name+'label'+ctr);
localStorage.removeItem(name+'value'+ctr);
ctr=Number(ctr)-1;
localStorage.removeItem('counter');
localStorage.setItem('counter',ctr);
ctr=localStorage.getItem('counter');
}
}
p.s:flag是我的变量,用于查看用户是否在线。
答案 0 :(得分:7)
Google会对您可以发送的连续事件进行评分。这是规则。
它类似于Token Bucket算法,其中最大令牌为10,刷新率为每5秒1个新令牌。
现在_setSampleRate
和_setSessionCookietimeout
对您没有帮助,您应该从跟踪代码中删除这些参数。你可以做的最好的事情是限制你的要求,在你的最后实现相同的算法。这是一个如何做到这一点的例子:
var tokens = 10;
function update_tokens() {
if (tokens < 10) tokens++;
}
// Even though new tokens should be generated each 5 seconds I give it 10 seconds just to make sure we have tokens available.
setInterval(update_tokens, 10 * 1000);
var hits_to_send = [
['_trackPageview', '/page1'],
['_trackPageview', '/page2'],
['_trackEvent', 'category', 'action', 'label'],
//...
];
// Recursive function to check tokens and send requests.
function send_next() {
if (hits_to_send.length==0) return;
if (tokens > 0) {
tokens--;
_gaq.push(hits_to_send.shift());
}
else {
setTimeout(send_next, 5 * 1000);
return;
}
send_next();
return;
}
//When you go online just call:
send_next();
即使某些指标看起来不太好,这也可以为您提供更好的数字。例如,timeOnSite和timeOnPage。如果用户已离线超过30分钟,即使他正在与系统进行交互,也可能会创建新的访问。
另请注意,如果您有太多事件,可能需要一段时间才能更新所有事件。我建议你把事件保持在合理的数额。尽量只跟踪对您未来分析很重要的事情。