diff --git a/src/platforms/apple/common/performance/instrumentation/automatic-instrumentation.mdx b/src/platforms/apple/common/performance/instrumentation/automatic-instrumentation.mdx index f1d4d696342038..8854ce576cc391 100644 --- a/src/platforms/apple/common/performance/instrumentation/automatic-instrumentation.mdx +++ b/src/platforms/apple/common/performance/instrumentation/automatic-instrumentation.mdx @@ -33,7 +33,7 @@ import Sentry SentrySDK.start { options in options.dsn = "___PUBLIC_DSN___" - options.enableUIViewControllerTracking = false + options.enableUIViewControllerTracing = false } ``` @@ -42,7 +42,7 @@ SentrySDK.start { options in [SentrySDK startWithConfigureOptions:^(SentryOptions *options) { options.dsn = @"___PUBLIC_DSN___"; - options.enableUIViewControllerTracking = NO; + options.enableUIViewControllerTracing = NO; }]; ``` @@ -154,7 +154,7 @@ import Sentry SentrySDK.start { options in options.dsn = "___PUBLIC_DSN___" - options.enableFileIOTracking = true + options.enableFileIOTracing = true } ``` @@ -163,7 +163,7 @@ SentrySDK.start { options in [SentrySDK startWithConfigureOptions:^(SentryOptions *options) { options.dsn = @"___PUBLIC_DSN___"; - options.enableFileIOTracking = YES; + options.enableFileIOTracing = YES; }]; ``` [NSData]: https://developer.apple.com/documentation/foundation/nsdata @@ -181,7 +181,7 @@ import Sentry SentrySDK.start { options in options.dsn = "___PUBLIC_DSN___" - options.enableCoreDataTracking = true + options.enableCoreDataTracing = true } ``` @@ -190,7 +190,7 @@ SentrySDK.start { options in [SentrySDK startWithConfigureOptions:^(SentryOptions *options) { options.dsn = @"___PUBLIC_DSN___"; - options.enableCoreDataTracking = YES; + options.enableCoreDataTracing = YES; }]; ``` @@ -258,7 +258,7 @@ import Sentry SentrySDK.start { options in options.dsn = "___PUBLIC_DSN___" - options.enableAutoPerformanceTracking = false + options.enableAutoPerformanceTracing = false } ``` @@ -267,7 +267,7 @@ SentrySDK.start { options in [SentrySDK startWithConfigureOptions:^(SentryOptions *options) { options.dsn = @"___PUBLIC_DSN___"; - options.enableAutoPerformanceTracking = NO; + options.enableAutoPerformanceTracing = NO; }]; ``` diff --git a/src/wizard/apple/ios.md b/src/wizard/apple/ios.md index 998866a2a7c95a..03e2763d00d121 100644 --- a/src/wizard/apple/ios.md +++ b/src/wizard/apple/ios.md @@ -116,6 +116,8 @@ SentrySDK.start { options in // ... // Enable all experimental features + options.enableFileIOTracing = true + options.enableCoreDataTracing = true options.enableUserInteractionTracing = true options.enablePreWarmedAppStartTracking = true options.attachScreenshot = true