Closed as not planned
Description
What React Native libraries do you use?
React Native without Frameworks, React Navigation, Hermes
Are you using sentry.io or on-premise?
sentry.io (SaS)
@sentry/react-native SDK Version
5.31.1
How does your development environment look like?
info Fetching system and libraries information...
System:
OS: macOS 14.6.1
CPU: (11) arm64 Apple M3 Pro
Memory: 114.70 MB / 18.00 GB
Shell: 5.9 - /bin/zsh
Binaries:
Node: 16.13.0 - ~/.n/bin/node
Yarn: 1.22.22 - /opt/homebrew/bin/yarn
npm: 8.1.0 - ~/.n/bin/npm
Watchman: 2024.07.29.00 - /opt/homebrew/bin/watchman
Managers:
CocoaPods: 1.15.2 - /Users/ayush/.rbenv/shims/pod
SDKs:
iOS SDK:
Platforms: DriverKit 23.4, iOS 17.4, macOS 14.4, tvOS 17.4, visionOS 1.1, watchOS 10.4
Android SDK:
API Levels: 33, 34
Build Tools: 30.0.3, 33.0.0, 34.0.0
System Images: android-34-ext8 | Google Play ARM 64 v8a, android-34 | Google APIs ARM 64 v8a
Android NDK: Not Found
IDEs:
Android Studio: 2023.3 AI-233.14808.21.2331.11842104
Xcode: 15.3/15E204a - /usr/bin/xcodebuild
Languages:
Java: 17.0.10 - /usr/bin/javac
npmPackages:
@react-native-community/cli: Not Found
react: 18.2.0 => 18.2.0
react-native: 0.71.19 => 0.71.19
react-native-macos: Not Found
npmGlobalPackages:
*react-native*: Not Found
Sentry.init()
import * as Sentry from "@sentry/react-native";
const routingInstrumentation = new Sentry.ReactNavigationInstrumentation({
enableTimeToInitialDisplay: true,
});
Sentry.init({
dsn: Config.REACT_APP_SENTRY_DSN,
tracesSampleRate: __DEV__ ? 1 : 0.1,
sampleRate: __DEV__ ? 1 : 0.3,
environment: __DEV__ ? "development" : Config.REACT_APP_ENV,
release: nativeAppVersion,
dist: DeviceInfo.getBuildNumber(),
attachStacktrace: true,
enableAutoPerformanceTracing: true,
enabled: !__DEV__,
debug: false,
beforeSend: filterSentryErrors,
ignoreErrors: IGNORED_SENTRY_ERRORS,
integrations: [
new Sentry.ReactNativeTracing({
routingInstrumentation,
enableStallTracking: true,
enableAppStartTracking: true,
enableNativeFramesTracking: true,
}),
],
});
Root component is wrapped as per the doc.
Steps to Reproduce
Don't have a reproducible env yet but sharing initialisation iOS debug logs if they're helpful.
'Sentry Logger [log]:', 'Unhandled promise rejections will be caught by Sentry.'
'Sentry Logger [log]:', 'Integration installed: ReactNativeErrorHandlers'
'Sentry Logger [log]:', 'Integration installed: NativeLinkedErrors'
'Sentry Logger [log]:', 'Integration installed: InboundFilters'
'Sentry Logger [log]:', 'Integration installed: FunctionToString'
'Sentry Logger [log]:', 'Integration installed: Breadcrumbs'
'Sentry Logger [log]:', 'Integration installed: Dedupe'
'Sentry Logger [log]:', 'Integration installed: HttpContext'
'Sentry Logger [log]:', 'Integration installed: Release'
'Sentry Logger [log]:', 'Integration installed: EventOrigin'
'Sentry Logger [log]:', 'Integration installed: SdkInfo'
'Sentry Logger [log]:', 'Integration installed: ReactNativeInfo'
'Sentry Logger [log]:', 'Integration installed: DebugSymbolicator'
'Sentry Logger [log]:', 'Integration installed: RewriteFrames'
'Sentry Logger [log]:', 'Integration installed: DeviceContext'
'Sentry Logger [log]:', 'Integration installed: ModulesLoader'
'Sentry Logger [log]:', '[ReactNativeTracing] Native frames instrumentation initialized.'
'Sentry Logger [log]:', 'Setting idle transaction on scope. Span ID: aec5e675848f95d7'
'Sentry Logger [log]:', '[Tracing] starting navigation transaction - Route Change'
'Sentry Logger [log]:', 'Starting heartbeat'
'Sentry Logger [log]:', 'pinging Heartbeat -> current counter: 0'
'Sentry Logger [debug]:', '[NativeFrames] Fetching frames for root span start (aec5e675848f95d7).'
'Sentry Logger [log]:', '[ReactNativeTracing] Starting navigation transaction "Route Change" on scope'
'Sentry Logger [log]:', '[Tracing] pushActivity: 9daccf5ea024b328'
'Sentry Logger [log]:', '[Tracing] new activities count', 1
'Sentry Logger [log]:', '[Tracing] Starting \'navigation.processing\' span on transaction \'Navigation processing\' (aec5e675848f95d7).'
'Sentry Logger [log]:', 'Integration installed: ReactNativeTracing'
'Sentry Logger [log]:', 'Integration installed: react-navigation-v5'
[Sentry] [debug] [SentrySDK:201] Starting SDK...
[Sentry] [debug] [SentrySDK:204] Configured options: <<SentryOptions: 0x1149c17c0>: {
enableProfiling_DEPRECATED_TEST_ONLY: 0
enableAppHangTrackingV2: 0
dsn: (null)
parsedDsn: [REDACTED]
debug: 1
diagnosticLevel: 1
releaseName: [email protected]+150
dist: 150
environment: development
enabled: 1
shutdownTimeInterval: 2
enableCrashHandler: 1
enableSigtermReporting: 0
maxBreadcrumbs: 100
enableNetworkBreadcrumbs: 1
maxCacheItems: 30
beforeSend: <__NSMallocBlock__: 0x600000e87f00>
beforeSendSpan: (null)
beforeBreadcrumb: (null)
beforeCaptureScreenshot: (null)
beforeCaptureViewHierarchy: (null)
onCrashedLastRun: (null)
integrations: (
SentrySessionReplayIntegration,
SentryCrashIntegration,
SentryAppStartTrackingIntegration,
SentryFramesTrackingIntegration,
SentryPerformanceTrackingIntegration,
SentryScreenshotIntegration,
SentryUIEventTrackingIntegration,
SentryViewHierarchyIntegration,
SentryWatchdogTerminationTrackingIntegration,
SentryANRTrackingIntegration,
SentryAutoBreadcrumbTrackingIntegration,
SentryAutoSessionTrackingIntegration,
SentryCoreDataTrackingIntegration,
SentryFileIOTrackingIntegration,
SentryNetworkTrackingIntegration,
SentrySwiftAsyncIntegration,
SentryMetricKitIntegration
)
sampleRate: 1
enableAutoSessionTracking: 1
enableGraphQLOperationTracking: 0
enableWatchdogTerminationTracking: 1
sessionTrackingIntervalMillis: 30000
attachStacktrace: 1
maxAttachmentSize: 20971520
sendDefaultPii: 0
enableAutoPerformanceTracing: 1
enablePerformanceV2: 0
initialScope: <__NSGlobalBlock__: 0x10329fcb8>
enableUIViewControllerTracing: 1
attachScreenshot: 0
attachViewHierarchy: 0
reportAccessibilityIdentifier: 1
enableUserInteractionTracing: 1
idleTimeout: 3
enablePreWarmedAppStartTracing: 0
enableNetworkTracking: 1
enableFileIOTracing: 1
enableTracing: 0
tracesSampleRate: (null)
tracesSampler: (null)
isTracingEnabled: 0
inAppIncludes: (
LeapCosmosWalletLeap
)
inAppExcludes: (
)
urlSessionDelegate: (null)
urlSession: (null)
enableSwizzling: 1
swizzleClassNameExcludes: {(
)}
enableCoreDataTracing: 1
enableAppLaunchProfiling: 0
profilesSampleRate: (null)
profilesSampler: (null)
isProfilingEnabled: 0
enableProfiling: 0
sendClientReports: 1
enableAppHangTracking: 1
appHangTimeoutInterval: 2
enableAutoBreadcrumbTracking: 1
tracePropagationTargets: (
"<NSRegularExpression: 0x600000e7bf00> .* 0x1"
)
enableCaptureFailedRequests: 0
failedRequestStatusCodes: (
"<SentryHttpStatusCodeRange: 0x600000561d00>"
)
failedRequestTargets: (
"<NSRegularExpression: 0x600000e7bf00> .* 0x1"
)
enableMetricKit: 0
enableMetricKitRawPayload: 0
enableTimeToFullDisplayTracing: 0
swiftAsyncStacktraces: 0
cacheDirectoryPath: /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches
enableSpotlight: 0
spotlightUrl: http://localhost:8969/stream
enableMetrics: 0
enableDefaultTagsForMetrics: 1
enableSpanLocalMetricAggregation: 1
beforeEmitMetric: (null)
experimental: <Sentry.SentryExperimentalOptions: 0x6000041c2140>
}>
[Sentry] [debug] [SentryFileManager:704] SentryFileManager.cachePath: /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches
[Sentry] [debug] [SentryFileManager:50] No file to delete at /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/events
[Sentry] [debug] [SentryHttpTransport:274] sendAllCachedEnvelopes start.
[Sentry] [debug] [SentryHttpTransport:286] No envelopes left to send.
[Sentry] [debug] [SentryReachability:179] Adding observer: <SentryHttpTransport: 0x6000029bf250>
[Sentry] [debug] [SentryReachability:181] Synchronized to add observer: <SentryHttpTransport: 0x6000029bf250>
[Sentry] [debug] [SentryReachability:211] registering callback for reachability ref <SCNetworkReachability 0x12eb408a0 [0x1e4876d80]> {name = sentry.io}
[Sentry] [debug] [SentryFileManager:135] Dispatched deletion of old envelopes from <SentryFileManager: 0x60000b35c0a0>
[Sentry] [debug] [SentryFileManager:536] Moving state /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/app.state to previous /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/previous.app.state.
[Sentry] [debug] [SentryFileManager:50] No file to delete at /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/previous.app.state
[Sentry] [debug] [SentryFileManager:536] Moving state /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/breadcrumbs.1.state to previous /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/previous.breadcrumbs.1.state.
[Sentry] [debug] [SentryReachability:137] SentryConnectivityCallback called with target: <SCNetworkReachability 0x12eb408a0 [0x1e4876d80]> {name = sentry.io (in progress, no addresses), flags = 0x00000002, if_index = 13}; flags: 2
[Sentry] [debug] [SentryReachability:102] Entered synchronized region of SentryConnectivityCallback with flags: 2
[Sentry] [debug] [SentryReachability:118] Notifying observers...
[Sentry] [debug] [SentryReachability:120] Notifying <SentryHttpTransport: 0x6000029bf250>
[Sentry] [debug] [SentryHttpTransport:107] Internet connection is back.
[Sentry] [debug] [SentryHttpTransport:274] sendAllCachedEnvelopes start.
[Sentry] [debug] [SentryFileManager:56] Successfully deleted file at /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/previous.breadcrumbs.1.state
[Sentry] [debug] [SentryHttpTransport:286] No envelopes left to send.
[Sentry] [debug] [SentryReachability:124] Finished notifying observers.
[Sentry] [debug] [SentryFileManager:536] Moving state /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/breadcrumbs.2.state to previous /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/previous.breadcrumbs.2.state.
[Sentry] [debug] [SentryReachability:137] SentryConnectivityCallback called with target: <SCNetworkReachability 0x12eb408a0 [0x1e4876d80]> {name = sentry.io (complete, 35.186.247.156), flags = 0x00000002, if_index = 13}; flags: 2
[Sentry] [debug] [SentryReachability:102] Entered synchronized region of SentryConnectivityCallback with flags: 2
[Sentry] [debug] [SentryReachability:73] No change in reachability state. SentryConnectivityShouldReportChange will return NO for flags 2, sentry_current_reachability_state 2
[Sentry] [debug] [SentryReachability:112] SentryConnectivityShouldReportChange returned NO for flags 2, will not report change to observers.
flipper: FlipperClient::addPlugin rn-mmkv
[Sentry] [debug] [SentryFileManager:56] Successfully deleted file at /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/previous.breadcrumbs.2.state
[Sentry] [debug] [SentrySDK:222] Dispatching init work required to run on main thread.
[Sentry] [debug] [SentrySDK:224] SDK main thread init started...
[Sentry] [debug] [SentryBaseIntegration:30] Not going to enable SentrySessionReplayIntegration because sessionReplaySettings is disabled.
[Sentry] [debug] [SentryFileManager:704] SentryFileManager.cachePath: /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches
[Sentry] [debug] [SentryFileManager:50] No file to delete at /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/events
[Sentry] [debug] Reading from session: /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/session.current
[Sentry] [debug] [SentryFileManager:390] Writing session: /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/session.crashed
[Sentry] [debug] [SentryFileManager:410] Deleting session: /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/session.current
[Sentry] [debug] [SentryFileManager:56] Successfully deleted file at /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/session.current
[Sentry] [info] [SentryCrash:311] Sending 1 crash reports
[Sentry] [debug] [SentrySDK:466] Integration installed: SentryCrashIntegration
[Sentry] [warning] [SentryFileManager:630] No app state data found at /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/previous.app.state
[Sentry] [debug] [SentrySDK:466] Integration installed: SentryAppStartTrackingIntegration
[Sentry] [debug] [SentrySDK:466] Integration installed: SentryFramesTrackingIntegration
[Sentry] [debug] [SentryBaseIntegration:30] Not going to enable SentryPerformanceTrackingIntegration because isTracingEnabled is disabled.
[Sentry] [debug] [SentryBaseIntegration:30] Not going to enable SentryScreenshotIntegration because attachScreenshot is disabled.
[Sentry] [debug] [SentryBaseIntegration:30] Not going to enable SentryUIEventTrackingIntegration because isTracingEnabled is disabled.
[Sentry] [debug] [SentryBaseIntegration:30] Not going to enable SentryViewHierarchyIntegration because attachViewHierarchy is disabled.
[Sentry] [warning] [SentryFileManager:630] No app state data found at /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/previous.app.state
[Sentry] [debug] [SentryFileManager:50] No file to delete at /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/breadcrumbs.1.state
[Sentry] [debug] [SentrySDK:466] Integration installed: SentryWatchdogTerminationTrackingIntegration
[Sentry] [debug] [SentryBaseIntegration:30] Not going to enable SentryANRTrackingIntegration because the debugger is attached.
[Sentry] [debug] [SentryScope:125] Add breadcrumb: <SentryBreadcrumb: 0x600001c445c0, {
category = started;
level = info;
message = "Breadcrumb Tracking";
timestamp = "2025-01-07T10:45:37.488Z";
type = debug;
}>
[Sentry] [debug] [SentryReachability:179] Adding observer: <SentryBreadcrumbTracker: 0x6000041c2470>
[Sentry] [debug] [SentryReachability:181] Synchronized to add observer: <SentryBreadcrumbTracker: 0x6000041c2470>
[Sentry] [debug] [SentrySwizzleWrapper:26] Swizzling sendAction for SentryBreadcrumbTrackerSwizzleSendAction
[Sentry] [debug] [SentryFileManager:651] Reading timezone offset
[Sentry] [debug] [SentrySDK:466] Integration installed: SentryAutoBreadcrumbTrackingIntegration
[Sentry] [debug] [SentryFileManager:472] Reading timestamp of last in foreground at: /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/lastInForeground.timestamp
[Sentry] [debug] [SentryFileManager:479] No lastInForeground found.
[Sentry] [debug] Reading from session: /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/session.current
[Sentry] [warning] [SentryFileManager:436] No data found at /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/session.current
[Sentry] [debug] [SentryHub:185] No cached session to close.
[Sentry] [debug] [SentrySDK:466] Integration installed: SentryAutoSessionTrackingIntegration
[Sentry] [debug] [SentryBaseIntegration:30] Not going to enable SentryCoreDataTrackingIntegration because isTracingEnabled is disabled.
[Sentry] [debug] [SentryBaseIntegration:30] Not going to enable SentryFileIOTrackingIntegration because isTracingEnabled is disabled.
[Sentry] [debug] [SentryBaseIntegration:30] Not going to enable SentryNetworkTrackingIntegration because isTracingEnabled is disabled.
[Sentry] [debug] [SentrySDK:466] Integration installed: SentryNetworkTrackingIntegration
[Sentry] [debug] [SentryBaseIntegration:30] Not going to enable SentryMetricKitIntegration because enableMetricKit is disabled.
[Sentry] [debug] [SentrySDK:247] SDK initialized! Version: 8.36.0
[Sentry] [debug] [SentryLaunchProfiling:68] Won't profile next launch due to specified options configuration: options.enableAppLaunchProfiling: 0; options.enableTracing: 0
[Sentry] [debug] [SentryFileManager:50] No file to delete at /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Application Support/io.sentry/profileLaunch
[Sentry] [debug] Reading from session: /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/session.crashed
[Sentry] [debug] [SentryFileManager:410] Deleting session: /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/session.crashed
[Sentry] [debug] [SentryFileManager:56] Successfully deleted file at /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/session.crashed
[Sentry] [debug] [SentryCrash:315] Process finished with completion: 1
[Sentry] [debug] [SentryFileManager:320] Writing envelope to path: /Users/ayush/Library/Developer/CoreSimulator/Devices/480C8922-9C78-4714-ACAF-524BA92B97AA/data/Containers/Data/Application/D690FD7F-9E0A-4749-8381-E0F8C3198253/Library/Caches/io.sentry/0f6a61e44d3ed6f802298c92ab401779a811f2f7/envelopes/1736246737.500387-00000-84B8FC95-518D-4320-AC60-AED4CAC0FBC0.json
[Sentry] [debug] [SentryHttpTransport:274] sendAllCachedEnvelopes start.
[Sentry] [debug] [SentrySerialization:95] Header {"event_id":"ba281a034730473ab8074ca8cc277d08","sdk":{"name":"sentry.cocoa.react-native","version":"8.36.0","packages":{"name":"cocoapods:getsentry\/sentry.cocoa.react-native","version":"8.36.0"}},"trace":{"trace_id":"8b73c0df4c5c44cd9f30227cf8a98424","public_key":"45dbaf6cf70d4420ad042b01ed83094d","release":"[email protected]+150","environment":"development"}}
[Sentry] [debug] [SentryCrashInstallationReporter:47] Sent 1 crash report(s)
[Sentry] [debug] Item Header {"type":"event","length":164108}
[Sentry] [debug] Item Header
{"type":"session","length":317}
[Sentry] [debug] [SentryNSURLRequest:99] Constructed request: <SentryNSURLRequest: 0x6000041dd360> { URL: https://o1207809.ingest.us.sentry.io/api/4504398996963328/envelope/ }
Expected Result
Looks like our setup is correct as per the docs, but still the app start data is missing totally for iOS and warm startup time is missing for Android.
Actual Result
Metadata
Metadata
Assignees
Type
Projects
Status
Done
Status
Waiting for: Community