xcode 在 iOS 版 Google Analytics(分析)中可以跟踪的事件数量是否有上限?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/9102053/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-14 23:10:55  来源:igfitidea点击:

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

iosxcodegoogle-analyticsflurry

提问by Nathan

Thanks in advance for the assistance. I recently ran into an issue with a clients app using Flurry Analytics. There is a maximum number of 300 events that can be tracked (each event can have a total of 10 different paramaters) I need to track more then 300 events for this client.

预先感谢您的帮助。我最近在使用 Flurry Analytics 的客户端应用程序中遇到了问题。最多可以跟踪 300 个事件(每个事件总共可以有 10 个不同的参数)我需要为此客户端跟踪超过 300 个事件。

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

Google Analytics 是否有可跟踪的最大事件数?

(the reason for the high number of tracked events for those who are curious is because the client has a database of about 15000 products, and wants to know how users are interacting with the products, additionally they want to track the search terms that users are searching for, thus the need for a HUGE number of events to be tracked....)

(对于好奇的人来说,跟踪事件数量高的原因是因为客户端有一个大约 15000 个产品的数据库,并且想知道用户如何与产品进行交互,另外他们想跟踪用户正在搜索的搜索词搜索,因此需要跟踪大量事件....)

采纳答案by rajagp

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

每月有 1000 万次点击(可能是事件、页面浏览等)的限制。在https://developers.google.com/analytics/devguides/collection/gajs/limits-quotas阅读细节。这是免费版本。高级版支持更高的数据限制。https://www.google.com/analytics/360-suite/#?modal_active=none

回答by crmpicco

There is also a 10 event (_trackEvent) limit over a 5 second period.

_trackEvent5 秒内还有 10 个事件 ( ) 限制。

回答by tonyfelice

Thought it might be helpful to clarify, considering the changes that Google made in Oct '12.

考虑到 Google 在 12 年 10 月所做的更改,我认为澄清一下可能会有所帮助。

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

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

10 million hits per month per web property - If you go over this limit, the Google Analytics team might contact you and ask you upgrade to Premium or implement client sampling to reduce the amount of data being sent to Google Analytics.

每个网络资产每月 1000 万次点击 - 如果您超过此限制,Google Analytics 团队可能会与您联系并要求您升级到 Premium 或实施客户端抽样以减少发送到 Google Analytics 的数据量。

...

...

ga.js or Legacy LibrariesThis applies to ga.js, mobile snippets and any other legacy tracking library. 500 hits per session not including ecommerce (item and transaction hit types) If you go over this limit, additional hits will not be processed for that session.

ga.js 或旧版库这适用于 ga.js、移动代码段和任何其他旧版跟踪库。每个会话 500 次点击,不包括电子商务(项目和交易点击类型) 如果您超过此限制,则不会为该会话处理额外的点击。

...

...

ga.jsEach web property starts with 10 hits that are replenished at 1 hit per second. Applies only to event type hits.

analytics.jsEach web property starts with 20 hits that are replenished at 2 hit per second. Applies to All hits.

Android SDKFor each tracker instance on a device, each app instance starts with 60 hits that are replenished at 1 hit every 2 seconds. Applies to All hits.

iOS SDKEach property starts with 60 hits that are replenished at 1 hit every 2 seconds. Applies to All hits.

ga.js每个网络资产都以 10 次点击开始,并以每秒 1 次点击的速度进行补充。仅适用于事件类型命中。

analytics.js每个网络资产从 20 次点击开始,并以每秒 2 次点击的速度进行补充。适用于所有命中。

Android SDK对于设备上的每个跟踪器实例,每个应用实例从 60 次点击开始,每 2 秒补充 1 次点击。适用于所有命中。

iOS SDK每个属性以 60 次命中开始,每 2 秒补充 1 次命中。适用于所有命中。