Daniele
Daniele

Reputation: 1391

Custom events in Firebase analytics console

I have followed the Firebase Analytics start guide to import my google-analytics project into Firebase. Everything went fine except that I cannot see any new data (custom events and new users) while I'm doing my tests.

There is no real-time functionality so at least I'm expected to see my custom events published in the dashboard as soon as they are emitted by the app.

Here an example of what I'm trying to achieve:

mFirebaseAnalytics.logEvent("test_event", null);

From the logcat I can see:

Logging event (FE): test_event

but the analytics dashboard remains empty. Any idea?

Upvotes: 4

Views: 3139

Answers (2)

djabi
djabi

Reputation: 5767

As Ian Barber mentioned the default view excludes today but you can change the date picker to today. It usually takes few hours for the events to appear in the Firebase Analytics reports (like 3-4 hours). BigQuery export happens once a day.

Upvotes: 2

Ian Barber
Ian Barber

Reputation: 19960

The events don't turn up right away - it requires the same processing as for any data to appear in the dashboard. This should be within 24 hours, and may be as fast as a few hours, depending on when the processing jobs run.

Its also worth noting the default view in the console does is the 30 days to yesterday. Select the drop down on the top right and select Today to see the most recent events

Upvotes: 12

Related Questions