限制每个帐户的Google Analytics异步事件推送? [英] Limit on Google Analytics asynchronous event push per account?

查看:91
本文介绍了限制每个帐户的Google Analytics异步事件推送?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道Google Analytics的限制是使用它们的事件跟踪。我知道有10个事件的限制。请参阅此处:

限制Google Analytics(分析)异步事件推送?



我通过Firebug进行了此测试,以确保:

  var i = 0; (i = 0; i <20; i ++){
_gaq.push([_ trackEvent,Checkout,Payment Failures,reasoncode:+ i,

) 1,true]);
}

像他们说的那样,一次只能记录10条记录。



现在,我遇到了一个问题,即我正在丢失在网站上跟踪的数据。许多用户试图通过_gaq.push保存事件,而不是保存所有事件。每个Google Analytics(分析)帐户是否也有限制?

谢谢。

解决方案

根据此来源: https://developers.google.com/ analytics / devguides / collection / analyticsjs / limits-quotas ,每个网络媒体资源在每个会话中的点击次数限制为500(非电子商务)。


I know there's a Google Analytics restriction for using the event tracking of them. I know there's a 10 events limit. Please refer here:

Limit on Google Analytics asynchronous event push?

I did this test via Firebug to make sure:

var i = 0;

for(i=0; i<20; i++) { 
    _gaq.push(["_trackEvent", "Checkout", "Payment Failures", "reasoncode: " + i, 1, true]);
}

Like they say, it's 10 records at a time.

Now, I have a problem and consists that I'm losing data tracked on a website. Many users try to save events via _gaq.push and not all of it it's being stored. Is there a restriction also per Google Analytics account?

Thanks.

解决方案

Based on this source: https://developers.google.com/analytics/devguides/collection/analyticsjs/limits-quotas, each web property has a limit of 500 (non-ecommerce) hits per session.

这篇关于限制每个帐户的Google Analytics异步事件推送?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆