-
-
Notifications
You must be signed in to change notification settings - Fork 337
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
Profiling for RN #2668
Comments
Right now that would be possible if you init the SDK manually. Enable Performance and Profiling directly on the Native SDKs, for example, Android. The same steps for iOS, would work for Android and iOS native code only, not in the JS bits nor C bits for Android. |
Linking opened Profiling discussion. |
For everyone interested in updates on the RN Profiling please see the new post in the discussion. |
@krystofwoldrich is there a draft PR we can look at? no need to be finished or polished, the earlier a draft PR is out, the earlier you get feedback :) |
Experimental support released in https://github.com/getsentry/sentry-react-native/releases/tag/5.8.0 Docs: https://docs.sentry.io/platforms/react-native/profiling/ yarn add @sentry/react-native@latest Sentry.init({
dsn: '__DSN__',
tracesSampleRate: 1.0,
_experiments: {
// The sampling rate for profiling is relative to TracesSampleRate.
// In this case, we'll capture profiles for 100% of transactions.
profilesSampleRate: 1.0,
},
}); |
This issue tracks all related tasks to Sentry React Native Profiling support.
In Development
Alpha since https://github.com/getsentry/sentry-react-native/releases/tag/5.8.0
In Progress
Planned
Private Notion page link.
This issue serves to gather interest and comments regarding Profiling for RN.
More about the Profiling product here.
Android and iOS support profiling therefore RN native could offer an option to turn it on in the native layers.
Thumbs up if you are interested.
The text was updated successfully, but these errors were encountered: