Track player progression on many levels

I have a simple puzzle game with many levels and there are always new levels added.
What is the best way to track player progression and time spent on each level?
I looked into using the funnel analyzer but it doesn’t seem practical if I have hundreds of levels.
What is the best way to approach this?

A funnel would be the correct approach. You could separate your funnel steps into groups, like LevelNum >= 0 and LevelNum <= 10 for the first step, etc. Are you using the Analytics beta?

1 Like