-
-
Couldn't load subscription status.
- Fork 196
Description
Description
When capturing a additional/intentional minidump that is not a crash,
the event on sentry dashboard is reported that 💀 Unhandled.
I expect the reported event to be flagged as an error / no-crash.
- This unhandled events generated false positive alarm.
- It is useful to record additional/intentional minidump (with stack traces) during debugging unexpected lags in native application.
I upload minidump with few additional variables via rest API using bash-curl outside of main process.
Example additional sentry.json file:
{
"event_id": "ac2db...",
"extra": {
"logs_link": "http://log-service.local;start=2023-03-27T10:00:00+00:00",
"ram_usage": "Free RAM 127 MB, available RAM 3.0 GB of total 3.9 GB"
},
"level": "error",
"release": "myapp_12345",
"tags": {
"dump_type": "ERROR",
"environment": "https://api-service.local/"
},
"timestamp": "2023-03-27T10:00:00",
"transaction": "ERROR",
"user": {
"id": ""
}
}I tried adding fields in root json and in sub-json "tags" but no effect:
"handled": true,
"level": "warning",It would be great if the 💀 Unhandled event flag would be overridden in this case by setting some flags in the sentry.json fields.
Or maybe it's possible to overwrite, but I'm using wrong fields in json?
When does the problem happen
- When capturing a minidump that is not a crash
Environment
- OS: linux (x86_64 and arm64)
- Compiler: clang
- SDK: Breakpad-minidump
- sentry-native: not used, upload events via rest API
Steps To Reproduce
- record minidump on linux
- create supplementary sentry json
- upload both via curl
- see reported event as 'crash'
Metadata
Metadata
Assignees
Projects
Status