Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 389
GuilhE Avatar asked Nov 03 '16 11:11

GuilhE


People also ask

How many events can be created in Firebase?

You can report up to 500 different types of Events per app and you can associate up to 25 unique parameters with each Event type. Some common events are suggested below, but you may also choose to specify custom Event types that are associated with your specific app. Each event type is identified by a unique name.

What is a Firebase event?

Events provide insight on what is happening in your app, such as user actions, system events, or errors. Analytics automatically logs some events for you; you don't need to add any code to receive them. If your app needs to collect additional data, you can log up to 500 different Analytics Event types in your app.


1 Answers

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.

like image 183
Benoit Avatar answered Oct 17 '22 02:10

Benoit