catarina cavaco
catarina cavaco

Reputation: 33

BigQuery - Firebase Analytics vs Firebase Crashlytics

How can I correlate firebase crashlytics events with firebase analytics events with BigQuery?

Upvotes: 3

Views: 786

Answers (2)

Todd Kerpelman
Todd Kerpelman

Reputation: 17523

As user3600910 noted, one important first step is linking your Firebase project to BigQuery and making sure you're exporting your Crashlytics and Analytics data there.

However, that won't be enough to connect the two data sets in BigQuery. You're going to need to find a way to connect the same user across both datasets. Probably the easiest way to do that would be to use the setUserID call in Analytics, and the setUserIdentifier call in Crashlytics. Those values will then show up in your Analytics BigQuery table as user_id and your Crashlytics BigQuery table as user.id. So if you set those to the same value, then you should be able to JOIN those tables together.

Upvotes: 2

user3600910
user3600910

Reputation: 3109

  • click in the settings in the upper right corner in the project
  • click on the integration tab
  • click on BigQuery
  • choose all the data sources you like to upload to BigQuery,

see attached link:

https://support.google.com/firebase/answer/6318765?hl=en

Upvotes: 0

Related Questions