Reputation: 318
I am using react-native-firebase analytics for tracking user events in google analytics, I can see the event name in the console of google analytics, but without the parameter item and its value.
I waited also 24 hours without any change.
import analytics from '@react-native-firebase/analytics';
....
analytics().logEvent('basket', { item: 'mens grey t-shirt', });
Upvotes: 3
Views: 3391
Reputation: 14179
You have to create event-scoped custom dimensions and metrics reporting. More details here: https://support.google.com/analytics/answer/10075209
In the current version of Firebase console the "Edit parameter reporting" action is gone. Custom parameters are now added through "Manage Custom Definitions" menu on top of the event list.
Upvotes: 4