In my iOS app I'm sending events to Firebase like this:
Analytics.logEvent(event, parameters: [
AnalyticsParameterItemID: id,
AnalyticsParameterItemName: name,
AnalyticsParameterContentType: type,
])
For instance I can send the event complete_review with the id 12 representing the screen. This seems to work well and I see event data in my Firebase / Google Analytics dashboard.
However, I can't figure out how to filter based on these parameters, like id, name or type.
e.g. : To illustrate, I currently have: "There are 2000 completed reviews" ... but I really want "there are 500 completed reviews of id 1, 100 of id 2, 300 of id 3 ...".
I'm seeing from the documentation that I should find a "Edit parameter reporting" link, but it doesn't seem to appear for me and I just see a "mark as NPA" button:
Right now it seems like the only solution is to use the event name. This means that instead of complete_review with id set to 12, I would send complete_review_id_12 and just have tons of different events, export it and then re-parse it with a custom script... this feels pretty terrible, so I'm wondering if anyone had a better idea.
