I'm having a hard time configuring my audiences in the Firebase console based on the custom event parameters I'm passing in my custom "test_event".
Below is the structure of a "test_event" as seen in Google BigQuery JSON table -
{
"name": "test_event",
"params": [
{
"key": "aoi_name",
"value": {
"string_value": "update_button",
"int_value": null,
"float_value": null,
"double_value": null
}
},
{
"key": "firebase_event_origin",
"value": {
"string_value": "app",
"int_value": null,
"float_value": null,
"double_value": null
}
},
{
"key": "screen_name",
"value": {
"string_value": "main_activity",
"int_value": null,
"float_value": null,
"double_value": null
}
} ]
What I want to observe is an audience clicking on "update_button" on the "main_activity" screen. Based on events of similar kind, I want to create Funnels for observing my user flows.
The problem is whenever I create an Audience -
It shows me no activity and number of users is always 0. Is this not the correct way to achieve the funnels I want?
Your setup looks good, it might help to post the code used to log the events as well. However, I think the issue might just be that audiences only start to accumulate from the point you create the audience onward (docs):
Once created, an audience accumulates users who meet the specified criteria from that point onward.
In addition, what may also cause you to think tracking is not working, is that the audience user count is only shown when once it exceeds 10 users (for privacy reasons):
Number of users in this audience that triggered events. Due to privacy restrictions, we do not show data for an audience with fewer than 10 users.
(taken from the help dialog when hovering over the little question mark when viewing audiences)