The list of debug images contains all dynamic libraries loaded into
the process and their memory addresses.
Instruction addresses in the Stack Trace are mapped into the list of debug
images in order to retrieve debug files for symbolication.
There are two kinds of debug images:
Native debug images with types macho, elf, and pe
Android debug images with type proguard
more details : https://develop.sentry.dev/sdk/event-payloads/debugmeta/
EventProcessors are callbacks that run for every event. They can either
return a new event which in most cases means just adding data or return
null in case the event will be dropped and not sent.
Code that provides middlewares, bindings or hooks into certain frameworks or environments,
along with code that inserts those bindings and activates them.
Sentry Exception Mechanism
The exception mechanism is an optional field residing
in the Exception Interface. It carries additional information about
the way the exception was created on the target system.
This includes general exception values obtained from operating system or
runtime APIs, as well as mechanism-specific values.
The Message Interface carries a log message that describes an event or error.
Optionally, it can carry a format string and structured parameters. This can help to group similar messages into the same issue.
example of a serialized message : {
"message": {
"message": "My raw message with interpreted strings like %s",
"params": "this"
}
}
The Request interface contains information on a HTTP request related to the event.
In client SDKs, this can be an outgoing request, or the request that rendered the current web page.
On server SDKs, this could be the incoming web request that is being handled.
The unit of measurement of a metric value.
Units augment metric values by giving them a magnitude and semantics.
Units and their precisions are uniquely represented by a string identifier.
This function is called with an SDK specific breadcrumb object before the breadcrumb is added
to the scope. When nothing is returned from the function, the breadcrumb is dropped