Skip to content

Commit

Permalink
feat(web-vitals): add support for mobile browsers (#3762)
Browse files Browse the repository at this point in the history
Adds support for mobile browsers to start ingesting web vitals. 

Continuation of getsentry/sentry#73298 which
adds the scoring percentile configuration for mobile browsers.
  • Loading branch information
KevinL10 authored Jun 26, 2024
1 parent a6bc0a2 commit 2ec6d88
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
**Internal**:

- Aggregate metrics before rate limiting. ([#3746](https://github.com/getsentry/relay/pull/3746))
- Add web vitals support for mobile browsers. ([#3762](https://github.com/getsentry/relay/pull/3762))
- Accept profiler_id in the profile context. ([#3714](https://github.com/getsentry/relay/pull/3714))

## 24.6.0
Expand Down
6 changes: 6 additions & 0 deletions relay-dynamic-config/src/defaults.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,12 @@ pub fn hardcoded_span_metrics() -> Vec<(GroupKey, Vec<MetricSpec>, Vec<TagMappin
"Safari",
"Edge",
"Opera",
// Mobile Browsers
"Chrome Mobile",
"Firefox Mobile",
"Mobile Safari",
"Edge Mobile",
"Opera Mobile",
],
);

Expand Down

0 comments on commit 2ec6d88

Please sign in to comment.