Moons
Moons

Reputation: 623

How to create funnel with event's parameter value in Firebase?

I have a game with a lot of levels (Something like 2000). I want to create a funnel to see players' progression through these levels and balance out too-hard ones.

I cannot send an unique event for every level (e.g. "Level 0040 Completed") because Firebase has a limit of 500 unique events. So I need to send an event like "Level Completed" and send the level number as parameter. But I don't know how can I create a funnel with that parameter. Is there any way to create funnel with a parameter of an event?

Upvotes: 20

Views: 5183

Answers (3)

Codeerik
Codeerik

Reputation: 1

To expand on Daniil Pavlenko's answer:

In the funnel exploration, add Steps, then click edit steps (pencil icon) and select the event whereafter you can include a parameter as a filter to each specfic step in the funnel.

Upvotes: 0

Daniil Pavlenko
Daniil Pavlenko

Reputation: 573

This can be achieved using Google Analytics.

In Explore tab create a new Funnel exploration and specify your events and parameter values in STEPS layout.

Upvotes: 0

Vesper
Vesper

Reputation: 493

Do you have to make it a funnel? You could log level_started/completed/failed, check how many attempts the users make before giving up, how much time they spend in the level etc, and figure it out that way.

Realistically you will have to connect your Firebase instance to BigQuery to do this though.

Upvotes: 4

Related Questions