Flurry Event Values show “com.flurry.OTHER”

放肆的年华 提交于 2019-12-11 01:59:11

问题


I Integrated Flurry in my iOS App. I added Some Events.

I am passing "EventName" as "String value" and "EventValue" as "URL String".

But When I checked in flurry analytics For Event_URL sometimes its showing com.flurry.OTHER" Any idea why its showing com.flurry.OTHER"

NSString *eventName = "EVENT NAME"; NSString *eventValue = "https://myname/myimage.gif";
NSMutableDictionary *articleParams = [[NSMutableDictionary alloc]init];
        [articleParams setObject:eventName forKey:@"Event_Name"];
        [articleParams setObject:eventValue forKey:@"Event_URL"];
        [Flurry logEvent:@"Event_Detail" withParameters:articleParams];

回答1:


An event parameter can have an infinite number of values but the reporting api is only capable of returning the top X values (I believe it is 500) and the remainder are reported as "com.flurry.OTHER".

Using event parameters is a good way to track data that occurs somewhat frequently, and less useful for tracking high numbers of unique values. Flurry can not provide all of the event parameter data when there are thousands of unique values (ie very high cardinality).



来源:https://stackoverflow.com/questions/45559331/flurry-event-values-show-com-flurry-other

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