No events intraday data from Firebase analytics in bigquery - firebase

Summary: What i want is get the data that my apps push to Firebase analytics. I've seen that this is possible in realtime with the analytics intraday dataset. I've linked my firebase with bigquery and ticked the apps on so that they share data.
My firebase has billing set so i have the blaze billing settings.
Problem: There is no dataset of analytics. i only see this, there is no dataset of the realtime data called "intraday".
Edit: Right now i have the event data from the past days. but still no realtime data from the intraday dataset

Related

Google analytics migration to firebase

I have a project which has google analytics and we have important data in GA which we don't want to loose is there any possible way while migrating to FireBase Analytics we can have this data there as well.
What I have tried so far is we can export data from GA in JSON format using Big Query, is there any way we can import this data to FireBase analytics using Big Query or is there a way I can link my GA account to firebase project and data migration will be done automatically?
Any help is greatly appreciated.
Unfortunately, the answer is no: there is no way to import old data to Firebase. That's why during the transition period (from GA to Firebase) it's recommended to use both SDKs or Google Tag Manager in order to log everything to both GA and Firebase. Then when you have built enough historical data in Firebase you can switch to it.
If you need both sets of data (Firebase and GA) you can export your GA analytics data to BigQuery, export Firebase data to BigQuery and then combine them and process them outside of Firebase, for example using Data Studio.

Will BigQuery charge me for export data from Firebase Analytic

I'm quite new to the service Bigquery.
My situation is I'm linking the Firebase Analytic to Bigquery to make some of analytic stuff (Blaze Plan upgraded).
I found that every day, the BigQuery automatically generates an event table with data from Firebase. My question is: will I be charged for that operation ? I'm afraid of charging for streaming insert, you know.
fyi: https://cloud.google.com/bigquery/streaming-data-into-bigquery#streaminginsertexamples
Thanks for viewing.
You can use Firebase and BigQuery without a credit card, within the monthly free tier limits.
However streaming into BigQuery is not free, and (for now) Analytics for Firebase exports data into BigQuery through streaming, so there will be an associated cost.
Meanwhile there is Firebase data that you can get for free into BigQuery:
Crashlytics
Cloud Messaging
Predictions
https://firebase.google.com/docs/bigquery-export#pricing

Live or hourly data sync from Firebase to BigQuery

We are using firebase to capture events on our App.
We have connected it with BigQuery so that the analytics data captured by firebase is exported to BigQuery.
The only problem for us is that the data export to BigQuery happens once in 24hrs. We would like to have the data export to BigQuery every hour.
I have not found a way to do this on Firebase console.
I was wondering if there is any way to ensure hourly export to BigQuery from Firebase analytics.
events_ table is what is updated every 24 hours.
If you want to get near real-time data, use the events_intratable_ table
For further reading: https://firebase.googleblog.com/2016/08/real-time-exporting-of-analytics-data-into-bigquery.html

Google Firebase / BigQuery - no previous data available

Recently we have linked our Firebase project with BigQuery.
But there are no previous (before linking) events data displayed in BigQuery console. Is there a way to get previous data?
Firebase Analytics events will be inserted into BigQuery from the moment you connect the two. There is no way to get the events from before you connected them.

Do I need create tables manually in Google BigQuery to view the raw event data from Firebase?

I had created a android App with Google Firebase supported and linked to the BigQuery yesterday.
Today I've seen the event report on the Firebase Console, but after I clicked the View button in the Event page like the image below
I saw none table in the BigQuery page and got a warning saying the project's table is dismissing.
I wonder if I need do something, like creating some table manually or calling some Firebase or BigQuery APIs in my app. But I've looked up the official document which saying
Once an app is linked to BigQuery, a corresponding dataset will be
created in the associated BigQuery project upon the first daily export
of events. Each day, raw event data for each linked app populates a
new table in the associated dataset.
It seems I need do nothing. So what's the problem here?
After you link your Firebase app to BigQuery, the next day, your events will flow from Firebase to BigQuery and this will automatically create the BigQuery dataset and its first daily table. Keep in mind that if your app is not logging any events, then no events will be sent to BigQuery. And the dataset will not be created until some events have been logged after the linkage.

Resources