J. Obels
J. Obels

Reputation: 21

Cant get custom parameters in Firebase-Analytics with Unity


i hope you can help me. I use the Firebase Unity SDK 1.1.1 and Unity 5.5.0f3. I use Firebase-Analytics in my game to track different stuff. LogEvents without custom parameters get tracked well but if I try to add custom parameters i can't see the parameters in the Firebase Console.

For Example:

The following function get called every time the player open a Level and i can see this Event in the Console.
Level_Played is the name of the Event
Level is parameter name.
currentLevel is an integer value for the Level

Firebase.Analytics.FirebaseAnalytics.LogEvent("Level_Played","Level", currentLevel);

If i try to create an audience to Filter this Event i can select Level_Played as an Event but can't select the parameter name Level. The list is just empty.

Hope you can help me

Upvotes: 2

Views: 2702

Answers (1)

adbitx
adbitx

Reputation: 2079

Currently, you won't be able to see the parameters of custom events according to the official documentation:

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.

Upvotes: 2

Related Questions