Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase analytics find custom event parameters

I create some custom parameter in my android app as the Firebase doc

//frist way
firebaseAnalytics.logEvent(FirebaseAnalytics.Event.SELECT_ITEM) {
    param(FirebaseAnalytics.Param.ITEM_ID, "3")
    param(FirebaseAnalytics.Param.ITEM_NAME, "requestCargo")
    param(FirebaseAnalytics.Param.CONTENT_TYPE, "text")
}

//second way
firebaseAnalytics.logEvent("create_cargo") {
    param("user_id", "1")
    param("action_type", "videoCall")
}
  1. I can see the event in Firebase -> Analytics -> Event
  2. There is no enable custom events
  3. there is no custom reporting tab

enter image description here

I could not see my params user_id, action_type

But I can see that in Firebase -> Analytics -> Realtime

enter image description here

Please help me if you know how to show params

like image 605
mohsen Avatar asked May 23 '21 09:05

mohsen


People also ask

How do I view parameters in Firebase events?

In Analytics for Firebase, navigate to your app. Click Events. In the row for the event you want to modify, click More > Edit parameter reporting. In the Enter parameter name field, enter the name of the parameter you'd like to register.

How do you check event parameters?

You can always click the Parameter reporting tab on top of the All events report to see a list of the events that have custom parameters enabled, and you can click the event name to edit the parameters. Once you see the parameter selector, you can search for the parameters name in the list.

How do I see event parameters in GA4?

How to find Event Parameters in the GA4 interface. If you configure nothing in GA4, the event parameters you send are still visible in the interface. In the realtime section, there is a widget “event count by event name“. If you click an event name, all parameters that are sent, are visible.

What are parameters in Firebase?

Params supply information that contextualize Events. You can associate up to 25 unique Params with each Event type. Some Params are suggested below for certain common Events, but you are not limited to these. You may supply extra Params for suggested Events or custom Params for Custom events.


1 Answers

I found the change.

There is a Custom definitions in the Analytics menu

You should create your custom definitions on this page

And set the Event parameter as your param in your app

enter image description here

you should wait some hours or a day. after that you can see the result on the Event page in your event

enter image description here

like image 195
mohsen Avatar answered Oct 13 '22 23:10

mohsen