Skip to content

Commit abbd922

Browse files
authored
feat(replays): Update onboarding wizard copy (#5767)
1 parent 2d91eeb commit abbd922

File tree

18 files changed

+21
-21
lines changed

18 files changed

+21
-21
lines changed

src/wizard/javascript/replay-onboarding/angular/1.install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type: language
77

88
#### Install
99

10-
For the sentry-replay integration to work, you must have the Sentry browser SDK package (minimum version 7.x), or an equivalent framework SDK (e.g. @sentry/react) installed.
10+
For the `@sentry/replay` integration to work, you must have the Sentry browser SDK package, or an equivalent framework SDK (e.g. @sentry/react) installed, minimum version 7.x.
1111

1212
```bash
1313
# Using yarn

src/wizard/javascript/replay-onboarding/angular/2.configure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type: language
77

88
#### Configure
99

10-
Add the following to your SDK config. There are several privacy and performance options available, all of which can be set via the `integrations` constructor. Learn more about configuring Replay in our Github [Readme](https://github.com/getsentry/sentry-replay/blob/main/README.md).
10+
Add the following to your SDK config. There are several privacy and sampling options available, all of which can be set via the `integrations` constructor. Learn more about configuring Session Replay in our Github [Readme](https://github.com/getsentry/sentry-replay/blob/main/README.md).
1111

1212
```javascript
1313
import * as Sentry from "@sentry/angular";

src/wizard/javascript/replay-onboarding/ember/1.install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type: language
77

88
#### Install
99

10-
For the sentry-replay integration to work, you must have the Sentry browser SDK package (minimum version 7.x), or an equivalent framework SDK (e.g. @sentry/react) installed.
10+
For the `@sentry/replay` integration to work, you must have the Sentry browser SDK package, or an equivalent framework SDK (e.g. @sentry/react) installed, minimum version 7.x.
1111

1212
```bash {tabTitle:ember-cli}
1313
ember install @sentry/ember @sentry/replay

src/wizard/javascript/replay-onboarding/ember/2.configure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type: language
77

88
#### Configure
99

10-
Add the following to your SDK config. There are several privacy and performance options available, all of which can be set via the `integrations` constructor. Learn more about configuring Replay in our Github [Readme](https://github.com/getsentry/sentry-replay/blob/main/README.md).
10+
Add the following to your SDK config. There are several privacy and sampling options available, all of which can be set via the `integrations` constructor. Learn more about configuring Session Replay in our Github [Readme](https://github.com/getsentry/sentry-replay/blob/main/README.md).
1111

1212
```javascript
1313
import * as Sentry from "@sentry/ember";

src/wizard/javascript/replay-onboarding/gatsby/1.install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type: language
77

88
#### Install
99

10-
For the sentry-replay integration to work, you must have the Sentry browser SDK package (minimum version 7.x), or an equivalent framework SDK (e.g. @sentry/react) installed.
10+
For the `@sentry/replay` integration to work, you must have the Sentry browser SDK package, or an equivalent framework SDK (e.g. @sentry/react) installed, minimum version 7.x.
1111

1212
```bash
1313
# Using yarn

src/wizard/javascript/replay-onboarding/gatsby/2.configure.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type: language
77

88
#### Configure
99

10-
Add the following to your SDK config. There are several privacy and performance options available, all of which can be set via the `integrations` constructor. Learn more about configuring Replay in our Github [Readme](https://github.com/getsentry/sentry-replay/blob/main/README.md).
10+
Add the following to your SDK config. There are several privacy and sampling options available, all of which can be set via the `integrations` constructor. Learn more about configuring Session Replay in our Github [Readme](https://github.com/getsentry/sentry-replay/blob/main/README.md).
1111

1212
Include the `@sentry/gatsby` plugin:
1313

@@ -41,4 +41,4 @@ Sentry.init({
4141
});
4242
```
4343

44-
Note: If `gatsby-config.js` has any settings for the `@sentry/gatsby` plugin they need to be moved into `sentry.config.js`. `gatsby-config.js` doesn't support non-serializable options, like `new Replay()`.
44+
Note: If `gatsby-config.js` has any settings for the `@sentry/gatsby` plugin they need to be moved into `sentry.config.js`. The `gatsby-config.js` file doesn't support non-serializable options, like `new Replay()`.

src/wizard/javascript/replay-onboarding/javascript/1.install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type: language
77

88
#### Install
99

10-
For the sentry-replay integration to work, you must have the Sentry browser SDK package (minimum version 7.x), or an equivalent framework SDK (e.g. @sentry/react) installed.
10+
For the `@sentry/replay` integration to work, you must have the Sentry browser SDK package, or an equivalent framework SDK (e.g. @sentry/react) installed, minimum version 7.x.
1111

1212
```bash
1313
# Using yarn

src/wizard/javascript/replay-onboarding/javascript/2.configure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type: language
77

88
#### Configure
99

10-
Add the following to your SDK config. There are several privacy and performance options available, all of which can be set via the `integrations` constructor. Learn more about configuring Replay in our Github [Readme](https://github.com/getsentry/sentry-replay/blob/main/README.md).
10+
Add the following to your SDK config. There are several privacy and sampling options available, all of which can be set via the `integrations` constructor. Learn more about configuring Session Replay in our Github [Readme](https://github.com/getsentry/sentry-replay/blob/main/README.md).
1111

1212
```javascript
1313
import * as Sentry from "@sentry/browser";

src/wizard/javascript/replay-onboarding/nextjs/1.install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type: language
77

88
#### Install
99

10-
For the sentry-replay integration to work, you must have the Sentry browser SDK package (minimum version 7.x), or an equivalent framework SDK (e.g. @sentry/react) installed.
10+
For the `@sentry/replay` integration to work, you must have the Sentry browser SDK package, or an equivalent framework SDK (e.g. @sentry/react) installed, minimum version 7.x.
1111

1212
```bash
1313
# Using yarn

src/wizard/javascript/replay-onboarding/nextjs/2.configure.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type: language
77

88
#### Configure
99

10-
Add the following to your Client SDK config. There are several privacy and performance options available, all of which can be set via the `integrations` constructor. Learn more about configuring Replay in our Github [Readme](https://github.com/getsentry/sentry-replay/blob/main/README.md).
10+
Add the following to your Client SDK config. There are several privacy and sampling options available, all of which can be set via the `integrations` constructor. Learn more about configuring Session Replay in our Github [Readme](https://github.com/getsentry/sentry-replay/blob/main/README.md).
1111

1212
```javascript {filename:sentry.client.config.js}
1313
import * as Sentry from "@sentry/nextjs";
@@ -27,4 +27,4 @@ Sentry.init({
2727
});
2828
```
2929

30-
Note: The `@sentry/repaly` integration only needs to be added to your `sentry.client.config.js` file. There will be no effect if it is added into `sentry.server.config.js`.
30+
Note: The `@sentry/replay` integration only needs to be added to your `sentry.client.config.js` file. It will not run if it is added into `sentry.server.config.js`.

0 commit comments

Comments
 (0)