kevingoos
kevingoos

Reputation: 4343

Firebase Analytics: See event data

I am converting my app to use the new Firebase analytics instead of the google analytics. But I am missing some key features that I use in google analytics that are just not there.

  1. First when I send an event, you can add a bundle with data. I added a bundle but where can I see the data I send? Or is this not possible with the free plan?
  2. The second thing that I miss is the live view, is there some way to see live what's happening, or is this a feature still coming.

Hopefully can somebody clear these things out.

Upvotes: 10

Views: 13269

Answers (2)

antoine
antoine

Reputation: 2106

Update for May 2017

  1. You can now see event parameters in the Firebase console (see announcement). Go to Events, click ⋮, Edit parameter reporting. The distribution of event parameters will then be visible in the dashboard for that event. Note that it's unfortunately not retroactive, so you'll have to wait for new events to be logged.

  2. Firebase now has a real-time view called StreamView

Upvotes: 6

Siddharth2092
Siddharth2092

Reputation: 407

Firebase is far superior to Google Analytics in many ways, so I would recommend you try to experiment with it a lot to get hold of how it is working and the features it is offering.

First when I send an event, you can add a bundle with data. I added a bundle but where can I see the data I send? Or is this not possible with the free plan?

You are right, you cannot see your raw event data on the Firebase console. It just shows you the Event names, which you can use for creating Funnels (user flows, conversions) as well as different kinds of Audiences.

To see your raw event data, you will have to purchase a plan. If you have got a large user base, you better use the Blaze plan which is pay per use or else take the Flame plan. https://firebase.google.com/pricing/

Once you take a plan, you will be able to see all your Events on a Google BigQuery platform where you can query data easily.

The second thing that I miss is the live view, is there some way to see live what's happening, or is this a feature still coming.

The Events take time to get logged on the Firebase console. In my experience it varied from 2 to 6 hours. For BigQuery, I could see the Event data only after the next day i.e. close to 24 hrs delay.

Hope this helps.

Upvotes: 13

Related Questions