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:
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.
source share