Reputation: 33
How can I correlate firebase crashlytics events with firebase analytics events with BigQuery?
Upvotes: 3
Views: 786
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
Reputation: 3109
see attached link:
https://support.google.com/firebase/answer/6318765?hl=en
Upvotes: 0