Skip to content Skip to sidebar Skip to footer

How To Export Crash-free Users From Firebase?

I want to persist data about crashes and metrics of crash-free users in my database for further analyze. I have already linked the project to BigQuery, but can't find a way to cal

Solution 1:

Fabric/Firebaser here -

The Firebase Crashlytics export to BigQuery doesn't include crash-free users because Google Analytics for Firebase is needed to calculate the crash-free users statistic. You can export Analytics data to BigQuery as well, however if you're using BigQuery sandbox you'll have to upgrade for that.

Once that's exported, you should be able to calculate the crash-free users value by counting distinct users with an "app_exception" event. This would look something like the following:

1 - (distinct users with app_exception / distinct users)

Post a Comment for "How To Export Crash-free Users From Firebase?"