-
-
Notifications
You must be signed in to change notification settings - Fork 394
feat: Standalone app start tracing #7660
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
base: main
Are you sure you want to change the base?
Changes from 62 commits
a43e535
2d02876
ba85ba9
ec54453
4d7bfa8
87017a5
b31cbf5
2cad1fb
244ad48
6427ad5
683fc13
81c03f0
51dc82b
d4918cb
db3ef7e
8211d93
89686ca
985fdd0
78e9ab3
df35dee
e0b4ea4
8106a64
661d309
462b028
0c44cc8
868d726
a0c07a6
fc55e12
a1e88d1
529e78a
ed652f5
2799506
6a7e677
8ba3510
5106df6
58d04f0
d11bf49
c7d58ca
15b9564
027eef2
4740d03
98fbbed
8b3d6f2
4819275
d0d815e
f525749
9d19a2a
973cc2f
3ac8825
ade227c
a243fa7
00e0d76
b3bf65e
aadd14e
c8f089a
c87b2d3
a59c367
c0be6c1
a4bdd0f
eae8893
764f45e
39f4d4c
90ffe5e
d731019
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,6 +15,10 @@ | |
|
|
||
| NSString *const SentrySpanOperationUiAction = @"ui.action"; | ||
| NSString *const SentrySpanOperationUiActionClick = @"ui.action.click"; | ||
| NSString *const SentrySpanOperationAppStart = @"app.start"; | ||
| NSString *const SentrySpanOperationAppStartCold = @"app.start.cold"; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we've made a decision with @noahsmartin that we want to switch the span operation to just this would make it cleaner as well as allow us to sample this specific spans/transactions in a custom TracesSampler callback without introducing a new sample rate.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. side note: for now we will additionally send This is mainly due to migrations because relay needs to manually backfill those attributes and existing transactions dont have them (see PR). So the mobile vitals dashboard will work with Depending on when this PR finishes we might not need the support for |
||
| NSString *const SentrySpanOperationAppStartWarm = @"app.start.warm"; | ||
|
|
||
| NSString *const SentrySpanOperationUiLoad = @"ui.load"; | ||
| NSString *const SentrySpanOperationUiLoadInitialDisplay = @"ui.load.initial_display"; | ||
| NSString *const SentrySpanOperationUiLoadFullDisplay = @"ui.load.full_display"; | ||
Uh oh!
There was an error while loading. Please reload this page.