I'm using Firebase for my app analytics and I'm having some issues with my events.
This event is fired when user opens a productDetailPage, with two parameters.
Analytics.logEvent(AnalyticsEventViewItem, parameters: [
AnalyticsParameterSource: pageSource,
AnalyticsParameterItemID: productId,
])
AnalyticsParameterItemID is the unique product id.
AnalyticsParameterSource is where the user comes from, like by sharing, pushNotification or promotion.
In my Firebase console, I'm able to see those events count. What I can't figure out is, how to just view the events of a specific product, or filter the events with AnalyticsParameterItemID == "specificProductId".
I'm pretty sure all those data is collected. I just can't find where to use those parameters. It seems I can only add audience as filters, not my event parameters.
I want to view the sources for a certain product for analyzing. Any idea how can I achieve this? Thanks!