I am logging some new custom events using Firebase Analytics in a React Native app. The events do show up in the Firebase events page after some delay, but the user count for these new events is "0", and I am trying to determine what the issue is. Other custom events that were already in place do show a user count, so it does seem that Firebase is correctly configured in the app.
Here is a screenshot of the event page for a new event:
And here is the debug view where I have confirmed the event comes through and that my user ID is set. I call setUserId
before logging these events. You can see that the user_id property is set:
I have been logging this event for several days in an app build that is not in debug mode. The app has been used by just a handful of users.
Another issue that might be related is that these new custom events do not show on the "Events" dashboard. I have to click into a different event and then type the event name in the filter at the top of the screen (as can be seen in the first screenshot) to find the event.
Thanks for any help!