Skip to content

Commit 344dbd0

Browse files
authored
fix: Wizard content (#2761)
* fix: Wizard content * fix: Links
1 parent ba6181f commit 344dbd0

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

src/wizard/javascript/angularjs.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,12 @@ Sentry.init({
3434
tracingOrigins: ["localhost", "https://yourserver.io/api"],
3535
}),
3636
],
37-
3837
tracesSampleRate: 1.0,
3938
});
4039

4140
// Finally require ngSentry as a dependency in your application module.
4241
angular.module("yourApplicationModule", ["ngSentry"]);
4342
```
43+
44+
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/).
45+

src/wizard/javascript/ember.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,9 @@ ENV['@sentry/ember'] = {
3838
sentry: {
3939
dsn: '___PUBLIC_DSN___',
4040
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
4541
tracesSampleRate: 1.0,
4642
}
4743
};
4844
```
4945

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

Comments
 (0)