Automatic Performance Instrumentation Preview #1187
Closed
philipphofmann
started this conversation in
Show and tell
Replies: 2 comments 5 replies
-
Does this work with SwiftUI apps? I'm setting up Sentry in the SentrySDK.start { options in
// basic
options.dsn = "https://[email protected]/3"
options.debug = true
options.diagnosticLevel = SentryLevel.warning
options.enabled = true
options.environment = "development"
// advanced
options.tracesSampleRate = 1.0 // Sampling 100% - In Production you probably want to adjust this
options.enableAutoSessionTracking = true
options.enableAutoPerformanceTracking = true
options.enableUIViewControllerTracking = true
options.enableNetworkTracking = true
options.enableFileIOTracking = true
options.enableProfiling = true
} I don't see any tracking data comming in. I've tested with a custom transaction like: let heavyOperation = SentrySDK.startTransaction()
// do something
heavyOperation.finsh() That showed up in the performance dashboard, but nothing else. |
Beta Was this translation helpful? Give feedback.
3 replies
-
Is it possible for apps that use SwiftUI to still maintain the URLSession network tracking? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
With 7.1.0-beta.0, we released a preview of automatic performance instrumentation. Please checkout the docs for more info. We highly appreciate your feedback as a comment below.
Beta Was this translation helpful? Give feedback.
All reactions