Can Firebase Crashlytics show events from Analytics? - firebase

I set up Firebase Analytics and Firebase Crashlytics for my project.
Can I view Analytics events and user properties in Firebase Crashlytics reports (including automatically collected events)?
Should I log events for Analytics and Crashlytics independently?
Should I set user properties for Analytics and customs keys for Crashlytics independently?
It looks like duplication.

EDIT: Crashlytics is now able to show Analytics events.
ORIGINAL ANSWER:
Firebase Crash Reporting and Firebase Crashlytics are fully independent products, so you will have to deal with them separately.
Crashlytics currently is not able to show Analytics events in crash reports. That is something the team would like to add in the future.

Related

Firebase: Analytics events are not always exporting to BigQuery

I have an iOS which I have implemented analytics on - I have created events for each time the screen of the app is changed.
When I view Analytics in Firebase Console I can see that they have been picked up and registered.
This issue comes when then trying to use BigQuery.
I used the app on 25/2/22, the events appeared in Firebase Console and then in BigQuery.
However, I then used the app on 1/3/22, the events have appeared in Firebase Console but not in BigQuery.
My question is how do I make sure that the data collected that I can see in Firebase Control is transferred to BigQuery so that I can query the data?

Crash-Free Users Metrics in Firebase

Firebase Crashlytics dashboard shows "Crash-free statistics". How to get/enable Crash-Free Users Statistics/Metrics in Firebase ?
Crash-Free User metrics helps monitor the health of your app releases and the effectiveness of recent improvements to your app. Monitoring your crash free users statistic over time allows you to see changes in stability easily. Firebase calculates this metric using Google Analytics for Firebase data. In order to populate the chart in your Crashlytics dashboard must include the Google Analytics for Firebase SDK. Once populated, you can see the percentage of users who did not experience a crash in your app over the selected timeframe and filter by build. You can see the same data in the latest release section of the Google Analytics for Firebase dashboard. To get started, add Google Analytics for Firebase to your iOS or Android app.

firebase analytics consoleļ¼šcustomer can see his own data but cannot see others

I created a android app using firebase analytics,i want one brand can only see its own data and cannot see other brands,how i manage the firebase analytics member in the firebase analytics console

Firebase Data from Google Analytics API

How can we get firebase data via Google Analytics API?
Normally, APP data was on Google Analytics property, and it was possible to get data via Google Analytics View ID.
Unfortunately, Google supposes app tracking on Firebase now. How we can get firebase data via Google Analytics API (core api) on Google sheets?
This isn't exactly what you're asking for, but if you have the "Blaze" Firebase plan it's possible to export Firebase Analytics and other data to BigQuery to allow querying the raw data.
Sign in to Firebase.
Click the Settings icon and select Project Settings.
On the Project Settings page, click the Integrations tab.
On the BigQuery card, click Link.
If billing has not already been enabled for your project, click
Upgrade & link.
Further reading:
https://support.google.com/firebase/answer/6318765?hl=en
https://cloud.google.com/solutions/mobile/mobile-firebase-analytics-bigquery

Firebase + GTM Tracking

My goal is to have App Data in Firebase Analytics, and other custom data plus app data in Google Universal Analytics.
My question is if I install Firebase SDK and GTM SDK on my App.
Does GTM handle all the data push to analytics. So with Firebase and GTM installed, will the firebase analytics automatically pick up the event tracking without going through GTM. Or when GTM is installed, everythign has to go through GTM.
For example, if I configure GTM to push data into Firebase Analytics, then will the data in Firebase Analytics be doubled up? Since GTM is pushing data and Firebase is automatically pushing data into Firebase Analytics.
Same App Event -> Firebase SDK -> Firebase Analytics (automatic)
Same App Event -> Firebase SDK -> GTM SDK -> Firebase Analytics (gtm container configured)
Same App Event ->Firebase SDK -> GTM SDK -> Google Analytics (gtm container configured)
First two will be doubled up? Is that right? Does that mean I dont need the gtm container configuration for Firebase analytics?
Through my experience, if you only want Firebase Analytics, you only need to install the Firebase SDK but if you want to then send that data to Google Analytics, you need GTM to send that data via a configured container.
Same App Event ->Firebase SDK -> GTM SDK -> Google Analytics (gtm container configured)
As an example, we have implemented Google Analytics extensively on our site to collect web data but we are utilizing Firebase (essentially as a data layer) to collect mobile app data and GTM to then send that data to Google Analytics.
Hope that helps.
If you are not using Google Analytics, you don't need to use GTM. You can track events in Firebase Analytics itself using Firebase SDK as well as you can track customized events.
If I configure GTM to push data into Firebase Analytics, then will the data in Firebase Analytics be doubled up?
Answer: Yes, if you trigger the same event from GTM as well. You will see the events twice in Firebase Analytics as one would be triggered from GTM always with the events which happen. If this issue is what you come through, try not triggering the events from GTM.

Resources