Is there a maximum number of events that you can track in Google Analytics for iOS?

Thanks in advance for your help. I recently ran into a problem with a client application using Flurry Analytics. There is a maximum of 300 events that can be monitored (each event can contain a total of 10 different parameters). I need to track over 300 events for this client.

Does Google Analytics have the maximum number of events that can be tracked?

(the reason for the large number of monitored events for those who are interested in the fact that the client has a database of about 15,000 products and wants to know how users interact with the products, in addition, they want to track the search conditions that users are looking for, so you need to track a HUGE amount of events. ...)

+6
source share
3 answers

There is a limit of 10 million hits per month (there may be events, page views, etc.). Read more at https://developers.google.com/analytics/devguides/collection/gajs/limits-quotas . This is a free version. Premium version supports higher data limits. https://www.google.com/analytics/360-suite/#?modal_active=none

+2
source

Within 5 seconds there is also a limit on 10 events ( _trackEvent ).

0
source

Thought it would be useful to clarify, given the changes Google made in October '12.

https://developers.google.com/analytics/devguides/collection/other/limits-quotas

10 million hits per month per web resource. If you exceed this limit, the Google Analytics team may contact you and ask you to upgrade to Premium or select clients to reduce the amount of data sent to Google Analytics.

...

ga.js or Legacy libraries This applies to ga.js, mobile fragments, and any other heritage tracking library. 500 hits per session, not including e-commerce (types of goods and transactions) If you cross this limit, additional hits will not be processed for this session.

...

ga.js Each web property starts with 10 hits, which are replenished with 1 hit per second. Applies only to event type hits.

analytics.js Each web property starts with 20 hits, which are replenished at a speed of 2 hits per second. Applies to all hits.

Android SDK For each instance of the tracker on the device, each instance of the application starts with 60 beats, which are replenished with 1 beat every 2 seconds. Applies to all hits.

IOS SDK Each property starts with 60 beats, which are replenished with 1 beat every 2 seconds. Applies to all hits.

0
source

Source: https://habr.com/ru/post/907425/


All Articles