Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase Search event Term not showing in analytics

I report a Search event and add the search query to the bundle. In Firebase, only the event is shown. I can see the stat on the search event log, but I can't see the value of the Term that were searched. From what I understand, the Term param is supported by Firebase.

Here is my code:

            Bundle bundle = new Bundle();
            bundle.putString(FirebaseAnalytics.Param.SEARCH_TERM, query);
            mFirebaseAnalytics.logEvent(FirebaseAnalytics.Event.SEARCH, bundle);

What should I do to get the search term to appear in `Firebase?

like image 845
Kamy Avatar asked Oct 02 '16 04:10

Kamy


People also ask

How do I see events in Firebase Analytics?

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 long does it take for my Firebase Analytics data to show up?

Once the data is uploaded it takes about 3 hours for it to appear in the dashboard.

What is NPA in Firebase Analytics?

To exclude an event or user-scoped custom definition from being used to personalize ads: On the left, click Configure, then click either Events or Custom definitions. In the row for an event or user-scoped custom definition, click. . Click Mark as NPA (no personalized ads).

What is the difference between Google Analytics and Firebase Analytics?

Google analytics also supported mobile analytics though android and IOS sdk's which sent Screen hits to google analytics. There was a difference between Mobile and web google analytics accounts. Firebase is a platform developed by Google for creating mobile and web applications.


1 Answers

You can use custom definitions to solve this problem.

Here's how

  1. Go to firebase console
  2. Then select the custom definition from the left panel
  3. click on "create custom dimension" at the top right
  4. Then enter the details as shown in this photo

enter image description here

After entering detail give it some time and then make a search event from your app.

now go to the events tab -> select search event -> and you will see your search term with the count in a separate card.

More info about the custom dimensions

like image 140
Het Thummar Avatar answered Oct 05 '22 09:10

Het Thummar