How to log event parameters to Firebase console [duplicate]

倾然丶 夕夏残阳落幕 提交于 2019-12-12 09:57:18

问题


I have just started using Firebase for my app's analytics and I'm having some issues trying to view custom parameters associated with my events.

The problem is that when creating an audience, I can see all the events but cannot drill down to the parameters (no parameters are shown associated to the events)

As an example, I'd like to register the event "Add retail to favourite" and pass, as a parameter, the ID of the retail. The final goal is to assess how many users had added a certain retail to their favourite list.

For iOS I'm using this piece of code:

[FIRAnalytics logEventWithName:@"add_retail_to_favorite" parameters:@{@"id_retail":idRetail}];

And for Android:

Bundle bundle = new Bundle();
bundle.putString(FirebaseAnalytics.Param.ITEM_ID, String.valueOf(mId));
mFirebaseAnalytics.logEvent("pv_detail", bundle);

Am I doing anything wrong?

Thanks for your support


回答1:


Currently, all custom parameters are available in the BigQuery export. Not all the custom parameters are available in the standard reports in the console.

For more details, see Firebase Analytics custom events params

We are looking for ways of improving the reports, and better support custom parameters is something we are considering.



来源:https://stackoverflow.com/questions/38456358/how-to-log-event-parameters-to-firebase-console

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