Skip to content

Commit 906e0fd

Browse files
coolguyzoneAlex Krawiec
andauthored
Add links to tracing product page in tracing tutorial (#11713)
* Add links to tracing product page in tracing tutorial * Fix capitalization typo --------- Co-authored-by: Alex Krawiec <[email protected]>
1 parent 1fc4a17 commit 906e0fd

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

docs/product/sentry-basics/distributed-tracing/initialize-sentry-sdk-backend.mdx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ Sentry captures data by using a platform-specific SDK that you add to your appli
3131

3232
1. Navigate to the `tracing-tutorial-backend` project folder and install the Sentry Express SDK using NPM.
3333

34-
{/* TODO: UPDATE NAME OF THIS REPO */}
35-
3634
```bash {tabTitle:npm}
3735
npm install --save @sentry/node @sentry/profiling-node
3836
```
@@ -80,8 +78,8 @@ Sentry captures data by using a platform-specific SDK that you add to your appli
8078

8179
The options set in `Sentry.init()` are called the SDK's configuration. The only required configuration option is the DSN. However, the SDK supports many other configuration options. Learn more in our [Configuration](/platforms/javascript/guides/react/configuration/) docs.
8280

83-
The configuration above enables Sentry's error monitoring feature, as well as its **Tracing** and [Session Replay](/platforms/javascript/guides/react/session-replay) features.
84-
{/* TODO: Add link for tracing here when tracing doc is live */}
81+
The configuration above enables Sentry's error monitoring feature, as well as its [**Tracing**](/product/tracing/) and [**Session Replay**](/platforms/javascript/guides/react/session-replay) features.
82+
8583

8684
1. Import `instrument.js` at the top of your `server.js` file. Then import `Sentry` and set up the error handler after all controllers and before any other middleware:
8785

docs/product/sentry-basics/distributed-tracing/initialize-sentry-sdk-frontend.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ Sentry captures data by using a platform-specific SDK that you add to your appli
8585

8686
The options set in `Sentry.init()` are called the SDK's configuration. The only required configuration option is the DSN. However, the SDK supports many other configuration options. Learn more in our [Configuration](/platforms/javascript/guides/react/configuration/) docs.
8787

88-
The configuration above enables Sentry's error monitoring feature, as well as **tracing** and [Session Replay](/platforms/javascript/guides/react/session-replay) features. Take note of the `tracePropagationTargets` option, this is required to enable tracing on any urls your projects are running on. Since both of this tutorial's projects are running on `localhost`, we are all set.
89-
{/* TODO: Add link for tracing here when tracing doc is live */}
88+
The configuration above enables Sentry's error monitoring feature, as well as [**Tracing**](/product/tracing/) and [**Session Replay**](/platforms/javascript/guides/react/session-replay) features. Take note of the `tracePropagationTargets` option, this is required to enable tracing on any urls your projects are running on. Since both of this tutorial's projects are running on `localhost`, we are all set.
89+
9090

9191
## 3. Build and Run the Sample Application
9292

0 commit comments

Comments
 (0)