In my current project I'm exporting Android app's Crashlytics crash data to BigQuery. I'm trying to trace the issue with a native library, and multiple crashes from different native libraries are getting associated under the same issue id. I'm curious if there is a way to create a direct Firebase Crashlytics link to the issue's event with a crash event_id
.
Right now Crashlytics issue links look like this:
<firebase_url>/<my_project_package>/issues/<issue_id>?sessionEventKey=<some_key>
sessionEventKey
doesn't match the format the event_id
from the BigQuery table, and sessionEventKey
's data doesn't match neither issue_id
nor event_id
. I tried to specify eventId=<event_id>
HTTP query param, but that didn't work. So I'm wondering if there is a way to create a direct link based on issue_id
+ event_id
I have in my crash data.
Thanks!