Is it possible to send already captured native dump files to Sentry?
We are currently testing Sentry as our new platform for crash reporting. Capturing new events was very easy to set up and work well. Migrating the already existing dumps is a key aspect to test the capabilities and the workflows we want to setup. Can anyone share any ideas or experience how to do this?
Sometimes, but generally no. Sentry is often operating on a specified format of a data and without that it cannot understand or materialize the information you’re sending it.
The exception to this rule is with Breakpad/Crashpad, where Sentry can accept native minidumps with minimal configuration. It’s not as fully featured as our SDKs in those cases, but Sentry is context-aware enough to be able to transform (symbolicate) those into our event JSON payloads.
@vitaliy.ostapchuk which SDK is generating these attributes? As you can see, the keys have single quotes prepended ('). If you ensure that the keys just read sentry[release], then it works.
Hi there.
I’m currently looking at this also, trying to get crash dumps from our linux servers. Is there any advantage to using minidumps from Crashpad? Or will the extracted data from a core file be sufficient? In this case, is there any point in uploading symbol files?