Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase events not showing NAME attribute

I have uploaded an app with firebase analytics, however, the SELECT_CONTENT events are not showing "Not set" as name, instead of the name i specified during development.

Firebase Console Events

here's one of the events i set on code:

Bundle bundle = new Bundle();
            bundle.putString(FirebaseAnalytics.Param.ITEM_ID, "4");
            bundle.putString(FirebaseAnalytics.Param.ITEM_NAME, "ClickedShareSocialMedia");
            mFirebaseAnalytics.logEvent(FirebaseAnalytics.Event.SELECT_CONTENT, bundle);

Any help?

like image 906
Daniel Andujar Avatar asked Jul 04 '16 11:07

Daniel Andujar


People also ask

How to see events in Firebase?

View events in the dashboard You can access this data from the Events dashboard in the Firebase console. This dashboard shows the event reports that are automatically created for each distinct type of event logged by your app.

How do I enable FIRDebugEnabled?

Enable debug mode by passing the -FIRDebugEnabled argument to the application. You can add this argument in the application's Xcode scheme. When debug mode is enabled via -FIRDebugEnabled, further executions of the application will also be in debug mode.

What is Session_start event?

When a session starts, Google automatically collects a session_start event and generates a session ID ( ga_session_id ) and session number ( ga_session_number ) via the session_start event. Session ID identifies the session that an event came from.

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.


1 Answers

Looks like you forgot to set the FirebaseAnalytics.Param.CONTENT_TYPE parameter.

You get reporting on both the CONTENT_TYPE (i.e. category) and the ITEM_NAME. The "(not set)" you are seeing is in reference to the CONTENT_TYPE. Once you specify a CONTENT_TYPE, you'll be able to drill into each type of content to see the most important items in each category.

like image 63
Steve Ganem Avatar answered Sep 29 '22 04:09

Steve Ganem