How to group events parameters by event on firebase?

和自甴很熟 提交于 2019-12-10 11:52:16

问题


I'm working in a react native application that uses analytics using react-native-firebase, I had something like this:

Analytics.logEvent('event_click', { target: 'accept', screen:'MainScreen' });

What I want on firebase, is to group the 'target' by 'screen' param for example or simply to see the params grouped and not separately.

Thank you!


回答1:


There are automatic registered events on Firebase that track the screen views, look at this source.

I recommend to organize your events according to this picture to get better insights about the information you need and also check the limitations about custom event limits and parameters Custom Events and Parameters Limitations

Hope it helps



来源:https://stackoverflow.com/questions/57103710/how-to-group-events-parameters-by-event-on-firebase

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