Custom Firebase Events

I have some special 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 see the my_event tab on the Events tab, but I cannot find my_key and some_value . I came across some similar questions, such as where it is indicated that the data will be available as soon as your audience reaches 10 or more. Well, I reached this audience. The documentation says:

Custom dimensions: Custom dimensions are not directly presented in Analytics reports, but they can be used as filters in the audience definitions that can be applied to each report. Custom Options: Also included in data exported to BigQuery if your application is associated with a BigQuery Project.

But on the Audience tab, I have:
enter image description here

If the filter is not applicable, how can I access my custom event? I don’t want to use BigQuery, all I want to do is create custom events and consult with them, like in Google Analytics.
Thanks.

+6
source share
1 answer

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

This audience can be based on an event or a custom property . In your case, check the event, you should see a list of predefined and custom events. Select my_event and then you will get a button to add the parameter. This button allows you to further refine your request using parameter values.

Hope this helps.

+1
source

Source: https://habr.com/ru/post/1011982/


All Articles