[英]Firebase non fatal feed
Does anyone know if there is a way to export or get a feed of crashlytics non-fatal issues? 有谁知道是否有一种方法可以导出或获取速成解决方案的非致命性问题? We want to create a process that would flag a new non-fatal issue or monitor the occurrences of existing issues.
我们想要创建一个流程来标记一个新的非严重问题或监视现有问题的发生。
Mike from Firebase here. 来自Firebase的Mike。 You could use the Big Query integration and Data Studio templates to push the data and run your own analysis.
您可以使用Big Query集成和Data Studio模板来推送数据并运行自己的分析。 The data push would be once a day, but you could then use something like this:
数据推送将是每天一次,但是您可以使用以下方法:
SELECT issue_id
FROM `cannonball-dogfood.crashlytics.io_fabric_samples_cannonball_ANDROID`
WHERE is_fatal=false
AND application.build_version >= '1.1'
LIMIT 10
(Cannonball is a sample app, so it would be for your app's table). (Cannonball是一个示例应用程序,因此适用于您的应用程序表)。
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.