We’re sending events to Firebase Analytics, and I want to use the Google Analytics funnel explorer, but I’m having some problems and I hope someone with experience can help.
We use some of the predefined events like so:
local event = {
["content_type"] = "pet",
["item_id"] = pet_info.name
}
firebase.analytics.log_table("share", event)
and in the Google Analytics funnel exploration I can define a funnel step on the “content_type” parameter - the ‘p’ matches “pet” in the event’s content_type.
any attempt to query on the item_id parameter (the interesting one, because it’s not always the same!) fails like so:
I know the data’s there, because I can see it in BigQuery:
Has anyone successfully done this or similar before, or can see any obvious mistake I’ve made?