Skip to content
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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Prewarmed App Start Tracing is stable #3536

Merged
merged 2 commits into from Jan 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,7 @@

- Add frames delay to transactions and spans (#3487, #3496)
- Add slow and frozen frames to spans (#3450, #3478)
- Prewarmed App Start Tracing is stable (#3536)

### Fixes

Expand Down
5 changes: 3 additions & 2 deletions Sources/Sentry/Public/SentryOptions.h
Expand Up @@ -254,11 +254,12 @@ NS_SWIFT_NAME(Options)
* @note The default is 3 seconds.
*/
@property (nonatomic, assign) NSTimeInterval idleTimeout;

/**
* @warning This is an experimental feature and may still have bugs.
* @brief Report pre-warmed app starts by dropping the first app start spans if pre-warming paused
* Report pre-warmed app starts by dropping the first app start spans if pre-warming paused
* during these steps. This approach will shorten the app start duration, but it represents the
* duration a user has to wait after clicking the app icon until the app is responsive.
*
* @note You can filter for different app start types in Discover with
* @c app_start_type:cold.prewarmed ,
* @c app_start_type:warm.prewarmed , @c app_start_type:cold , and @c app_start_type:warm .
Expand Down