{ "support_level": "production", "type": "framework", "name": "Minidump", "doc_link": "https://docs.sentry.io/platforms/native/minidump/", "body": "

Creating and Uploading Minidumps

\n\n

Depending on your operating system and programming language, there are various\nalternatives to create minidumps and upload them to Sentry. See the following\nresources for libraries that support generating minidump crash reports:

\n\n\n\n

If you have already integrated a library that generates minidumps and would just\nlike to upload them to Sentry, you need to configure the Minidump Endpoint\nURL, which can be found at Project Settings > Client Keys (DSN). This\nendpoint expects a POST request with the minidump in the\nupload_file_minidump field:

\n\n
$ curl -X POST \\\n  '___MINIDUMP_URL___' \\\n  -F upload_file_minidump=@mini.dmp\n
\n\n

To send additional information, add more form fields to this request. For a full\ndescription of fields accepted by Sentry, see Passing Additional\nData.\n

" }