Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 573
Daniele Avatar asked Dec 08 '22 22:12

Daniele


2 Answers

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

like image 50
Ian Barber Avatar answered Dec 10 '22 11:12

Ian Barber


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.

like image 38
djabi Avatar answered Dec 10 '22 13:12

djabi