Minidump upload + breadcrumbs

Can I not attach breadcrumb information to a minidump report ?

This doesn’t seem to be supported according to the minidump doc page (https://docs.sentry.io/platforms/minidump/) (bummer !).

Hi Benjamin,

You can attach breadcrumbs just like tags (see https://docs.sentry.io/platforms/minidump/#minidump-additional).

Curl examples:

# As JSON
$ curl -X POST \
  'https://sentry.io/api/155735/minidump/?sentry_key=05b28b635e8d415ca5ea4415b785d271' \
  -F upload_file_minidump=@mini.dmp \
  -F 'sentry={"breadcrumbs":{"values":[{"timestamp":"2019-01-15T09:52:23.978Z","message":"hello"}]}}'

# flattened
$ curl -X POST \
  'https://sentry.io/api/155735/minidump/?sentry_key=05b28b635e8d415ca5ea4415b785d271' \
  -F upload_file_minidump=@mini.dmp \
  -F 'sentry[breadcrumbs][values][0][timestamp]=2019-01-15T09:52:23.978Z' \
  -F 'sentry[breadcrumbs][values][0][message]=hello'

AH ! Thanks for the answer Jan.

How could I think that you guys wouldn’t think about that :slight_smile:

(maybe it’s worth adding this in the doc … for the next person trying to figure out whether breadcumbs are supported)