-
-
Notifications
You must be signed in to change notification settings - Fork 161
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Server side symbolication for panics #354
Comments
Can you link me to a specifc sentry issue you are seeing this? Also, sentry can directly process pdb files. They are higher quality than going through |
That is why I used the feature request format instead of bug report.
That didn't seem to work for binaries made with mingw64. Cargo doesn't create
Full log (with It works fine and shows stack trace/line numbers after going through
If I wasn't clear, I want to be able to see stack traces with line numbers of panics on executables created on windows/mingw on release mode by uploading the symbol data separately. Which is not currently possible as far as I'm aware. |
Heads up that I think this can be closed now that #366 landed 💪 |
Good call, indeed, thanks for reminding me. |
Hello,
Panic reports sent to sentry for programs compiled on release profile is missing stacktrace information.
From uploaded json:
Which is expected but it is also missing debug_id (which the Native SDK sends). So I don't see how I can get it to use the server-side symbolicator.
For comparison a Native crash (i.e. segfault) on my rust program (also built in release mode) sends this:
And as long as the
pdb
orsym
file (fromgcc -g
->cv2pdb
->dump_syms
) is uploaded usingsentry-cli
it can show line numbers even if the client didn't have the debug information.Sorry if this is possible and I've missed it but I didn't manage to find anything related in the docs.
The text was updated successfully, but these errors were encountered: