You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We recommend adjusting the value of `tracesSampleRate` in production. Learn more about configuring sampling in our [full documentation](https://docs.sentry.io/platforms/javascript/performance/sampling/).
Copy file name to clipboardExpand all lines: src/wizard/javascript/ember.md
+1-5Lines changed: 1 addition & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,13 +38,9 @@ ENV['@sentry/ember'] = {
38
38
sentry: {
39
39
dsn:'___PUBLIC_DSN___',
40
40
autoSessionTracking:true,
41
-
// Set tracesSampleRate to 1.0 to capture 100%
42
-
// of transactions for performance monitoring.
43
-
// We recommend adjusting this value in production, or using tracesSampler
44
-
// for finer control
45
41
tracesSampleRate:1.0,
46
42
}
47
43
};
48
44
```
49
45
50
-
The above configuration captures both error and performance data. To reduce the volume of performance data captured, change `tracesSampleRate` to a value between 0 and 1.
46
+
We recommend adjusting the value of `tracesSampleRate` in production. Learn more about configuring sampling in our [full documentation](https://docs.sentry.io/platforms/javascript/performance/sampling/).
0 commit comments