-
-
Notifications
You must be signed in to change notification settings - Fork 3
feat(attributes): Add several measurement attributes #362
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
Open
loewenheim
wants to merge
1
commit into
main
Choose a base branch
from
sebastian/measurement-attributes
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| { | ||
| "key": "frames_frozen_rate", | ||
| "brief": "The rate of frozen frames, or `app_vitals.frames.frozen.count` divided by `app_vitals.frames.total.count`.", | ||
| "type": "double", | ||
| "pii": { | ||
| "key": "maybe" | ||
| }, | ||
| "is_in_otel": false, | ||
| "changelog": [ | ||
| { | ||
| "version": "next", | ||
| "prs": [362], | ||
| "description": "Added frames_frozen_rate attribute" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| { | ||
| "key": "frames_slow_rate", | ||
| "brief": "The rate of slow frames, or `app_vitals.frames.slow.count` divided by `app_vitals.frames.total.count`.", | ||
| "type": "double", | ||
| "pii": { | ||
| "key": "maybe" | ||
| }, | ||
| "is_in_otel": false, | ||
| "changelog": [ | ||
| { | ||
| "version": "next", | ||
| "prs": [362], | ||
| "description": "Added frames_slow_rate attribute" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| { | ||
| "key": "stall_percentage", | ||
| "brief": "The fraction of time the app was stalled. Only applies to React Native.", | ||
| "type": "double", | ||
| "pii": { | ||
| "key": "maybe" | ||
| }, | ||
| "is_in_otel": false, | ||
| "changelog": [ | ||
| { | ||
| "version": "next", | ||
| "prs": [362], | ||
| "description": "Added stall_percentage attribute" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| { | ||
| "key": "stall_total_time", | ||
| "brief": "The combined duration of all stalls in milliseconds. Only applies to React Native.", | ||
| "type": "integer", | ||
| "pii": { | ||
| "key": "maybe" | ||
| }, | ||
| "is_in_otel": false, | ||
| "changelog": [ | ||
| { | ||
| "version": "next", | ||
| "prs": [362], | ||
| "description": "Added stall_total_time attribute" | ||
| } | ||
| ] | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
stall_total_timetype should be double, not integerHigh Severity
stall_total_timeis typed asinteger, but real-world values from the React Native SDK have sub-millisecond precision (e.g.,247.875). All other time-duration measurements in this repo (time_to_full_display,fcp,ttfb, etc.) usedouble. Usingintegerhere will truncate fractional millisecond values when Relay converts measurements to attributes, causing silent data loss.Additional Locations (2)
javascript/sentry-conventions/src/attributes.ts#L12521-L12522python/src/sentry_conventions/attributes.py#L13088-L13089Reviewed by Cursor Bugbot for commit 7a0b3e4. Configure here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is correct. The RN SDK calls the JS SDK's
timestampInSeconds * 1000which returns the current time stamp with sub-millisecond precision. IIRC Relay treats integer and double attributes in the same way but it's probably safer to declare this attribute as typedouble. WDYT?