GuilhE
GuilhE

Reputation: 11891

Firebase custom events

I've a few custom events like this:

Bundle bundle = new Bundle();
bundle.putString("my_key", "some_value");
bundle.putString("my_key2", "some_value_2");
bundle.putString("my_key3", "some_value_3");
mFirebaseAnalytics.logEvent("my_event", bundle);

In the Firebase console I can see the my_event in Events tab but I can't find the my_key and some_value. I came across some similar questions like this where is stated that data will be available as soon as your audience reach 10 or more. Well I've reached that audience.
The documentation says:

Custom parameters: Custom parameters are not represented directly in your Analytics reports, but they can be used as filters in audience definitions that can be applied to every report. Custom parameters are also included in data exported to BigQuery if your app is linked to a BigQuery project.

But in the Audience tab I have:
enter image description here

If Filter not applicable how can I consult my custom event? I don't want to use BigQuery, all I want is to create custom events and consult them like I would with Google Analytics.
Thanks.

Upvotes: 6

Views: 1884

Answers (1)

Benoit
Benoit

Reputation: 5394

You cannot change these 2 predefined audience types, but you can create your own audience type:

This audience can either be based on an event or a user property. In your case, check event, you should see a list of predefined and custom events. Choose my_event, and then you get the button to add a parameter. this button allows you to further refine your query with parameter values.

Hope this helps.

Upvotes: 1

Related Questions