You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today, a partner sending data for native crashes has a series of Thread-scoped data.
For example:
key
value
affinity_mask
0x0000000000000007
current_core
1
exception_address
0x0000000000000000
exception_code
2
exception_code_description
Access Violation Data
exception_thread
355925
ideal_core
1
lr_called
true
priority
15
stack_bottom
0x0000006a07a7b390
stack_top
0x0000006a07b7b390
Currently, they send this via threads.stacktrace[i].vars, which is displayed under the frame, e.g:
Ideally this data is displayed outside the stack trace, but within the scope of the thread. So when the thread selector is used, the values get updated.
Solution Brainstorm
Today, the Thread part of the protocol has a few fields, some specialized, but also a generic field: other for unknown top level fields to be kept and support forward compatibility
Problem Statement
Today, a partner sending data for native crashes has a series of Thread-scoped data.
For example:
Currently, they send this via
threads.stacktrace[i].vars
, which is displayed under the frame, e.g:Ideally this data is displayed outside the stack trace, but within the scope of the thread. So when the thread selector is used, the values get updated.
Solution Brainstorm
Today, the Thread part of the protocol has a few fields, some specialized, but also a generic field:
other
for unknown top level fields to be kept and support forward compatibilityhttps://github.com/getsentry/relay/blob/fe3f09fd3accd2361887dd678dbe034f25139fce/relay-event-schema/src/protocol/thread.rs#L213-L249
Could we use the
other
field? Or should we add a specialized map?Is
other
already displayed somewhere?The current design would indicate values should be shown in this tag-like UI:
Is there a way to pass values to be added there outside of the
exception
interface?Product Area
Issues
The text was updated successfully, but these errors were encountered: