How to export crash-free users from firebase?

旧街凉风 提交于 2021-01-27 14:22:23

问题


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 calculate crash-free users value by data, which contained in BigQuery.

It's possible to export crash-free users metrics in some way?


回答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)



来源:https://stackoverflow.com/questions/57286697/how-to-export-crash-free-users-from-firebase

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!