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
I'm having troubles with Sentry issue report symbolification.
I created an iOS beta ad-hoc app build, uploaded dSYM files to the company self-hosted Sentry server, but when an issue appears in the Issues section there is an "A required debug information file was missing" warning and stack trace contains caption where method names should be.
I tried to upload dSYM files in 3 different ways:
Run script at the end of the app building process
Using sentry-cli from terminal
Using fastlane sentry_debug_files_upload after successfull app build
All 3 ways successfully uploaded dSYM files, but unfortunatelly nothing helped with the symbolicating events.
With each test I created a new event by calling: SentrySDK.capture(error: error) with different NSError domain and code, but all of them had the same symbolication issue.
This is the Sentry configuration we use:
SentrySDK.start { options in
options.dsn = "..."
switch buildConfiguration {
case .debug:
options.debug = true
// Set tracesSampleRate to 1.0 to capture 100% of transactions for performance monitoring.
// We recommend adjusting this value in production.
options.tracesSampleRate = 1.0
// Sample rate for profiling, applied on top of TracesSampleRate.
// We recommend adjusting this value in production.
options.profilesSampleRate = 1.0
case .beta, .release:
options.debug = false
options.tracesSampleRate = 0.25
options.profilesSampleRate = 0.25
}
}
This is how issue report stack trace looks like:
Do you have some advice on how to troubleshout this or an idea what could be wrong?
Expected Result
Symbolicated issue reports.
Actual Result
Unsymbolicated issue reports.
Are you willing to submit a PR?
No response
The text was updated successfully, but these errors were encountered:
Platform
iOS
Environment
Other
Installed
Swift Package Manager
Version
8.40.1
Xcode Version
16.1
Did it work on previous versions?
No response
Steps to Reproduce
Hello,
I'm having troubles with Sentry issue report symbolification.
I created an iOS beta ad-hoc app build, uploaded dSYM files to the company self-hosted Sentry server, but when an issue appears in the Issues section there is an "A required debug information file was missing" warning and stack trace contains caption where method names should be.
I tried to upload dSYM files in 3 different ways:
All 3 ways successfully uploaded dSYM files, but unfortunatelly nothing helped with the symbolicating events.
With each test I created a new event by calling: SentrySDK.capture(error: error) with different NSError domain and code, but all of them had the same symbolication issue.
This is the Sentry configuration we use:
This is how issue report stack trace looks like:
Do you have some advice on how to troubleshout this or an idea what could be wrong?
Expected Result
Symbolicated issue reports.
Actual Result
Unsymbolicated issue reports.
Are you willing to submit a PR?
No response
The text was updated successfully, but these errors were encountered: