Limit on Google Analytics asynchronous event push per account?

与世无争的帅哥 提交于 2019-12-11 06:54:57

问题


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.


回答1:


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.



来源:https://stackoverflow.com/questions/28549642/limit-on-google-analytics-asynchronous-event-push-per-account

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!