Skip to content

Commit e38baec

Browse files
Alex KrawiecAlex Krawiec
authored andcommitted
Update urls for github sample projects
1 parent ac96a19 commit e38baec

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

docs/product/sentry-basics/distributed-tracing/create-new-project.mdx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Create Frontend and Backend Sentry Projects
33
sidebar_order: 2
4-
description: "Learn how to create your Sentry projects, which will scope events to a distinct piece of your application landscape."
4+
description: "Learn how to create your Sentry projects, which will scope events to distinct pieces of your application landscape."
55
---
66

77
This section walks you through how to create new projects in your Sentry account. You need to have a project set up in Sentry in order to capture errors and other events. In this walkthrough we will be creating a frontend project in React as well as a separate backend project in Express/Node.
@@ -35,7 +35,6 @@ Follow the steps below to create a new Sentry project for a sample React applica
3535
1. Click **Take me to Issues** to go to your new project's **Issues** page.
3636

3737
### UI Walkthrough
38-
{/* UPDATE THIS WITH YOUR OWN ARCADE */}
3938

4039
The interactive demo below walks through how to create a new project in the UI.
4140

@@ -55,7 +54,7 @@ The interactive demo below walks through how to create a new project in the UI.
5554

5655
## Create a Backend Project
5756

58-
Follow the steps below to create a new Sentry project for a sample Backend application:
57+
Next, follow the steps below to create a new Sentry project for a sample Backend application:
5958

6059
1. Log in to your [Sentry organization](https://sentry.io).
6160

@@ -97,4 +96,4 @@ Follow the steps below to create a new Sentry project for a sample Backend appli
9796

9897
## Next
9998

100-
Now that you have a Sentry project set up, you can [Add the Sentry SDK to Your Frontend Projects](/product/sentry-basics/distributed-tracing/initialize-sentry-sdk-frontend/).
99+
Now that you have your Sentry projects set up, you can [Add the Sentry SDK to Your Frontend Project](/product/sentry-basics/distributed-tracing/initialize-sentry-sdk-frontend/).

docs/product/sentry-basics/distributed-tracing/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
22
title: Distributed Tracing
33
sidebar_order: 1
4-
description: "Follow this tutorial to set up Sentry for a sample fullstack JavaScript application. By the end, you'll be able to use distributed tracing."
4+
description: "Follow this tutorial to set up Sentry for a sample fullstack JavaScript application. By the end, you'll be able to use distributed tracing to monitor cross-platform errors in Sentry."
55
---
66

77
This step-by-step tutorial walks you through setting up Sentry in both a frontend and backend sample application. After completing this tutorial you'll be able to trace the source and impact of your issues across projects and platforms. As part of this tutorial, you will:
88

99
- Configure the Sentry SDK on a sample React and Node/Express app.
1010
- Trigger a sample front-error that in turn triggers a sample back-end error.
11-
- Go into Sentry Distributed Tracing and see the details of your entire trace.
11+
- Go into Sentry Distributed Tracing and see the details of the entire trace.
1212

13-
This tutorial uses a [sample React application](https://github.com/getsentry/tracing-tutorial-setting-up-frontend) on the frontend as well as a sample [Node/Express API](https://github.com/coolguyzone/sample-node-backend) as the backend. Some familiarity with JavaScript will help you follow along, you can also follow along with the provided sample code or apply the same steps to your own project.
13+
This tutorial uses a [sample React application](https://github.com/getsentry/tracing-tutorial-frontend) on the frontend as well as a sample [Node/Express API](https://github.com/getsentry/tracing-tutorial-frontend) on the backend. Some familiarity with JavaScript will help you follow along. If you'd prefer, you can also apply the same steps to your own project, assuming you are running React on the frontend and Node/Express on the backend.
1414

1515
## Prerequisites
1616

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ If you're using your own source code, you can skip this section. Instead:
1616

1717
The sample application is a basic backend application using Express and Node.
1818

19-
1. Fork the [sample application's repository](https://github.com/coolguyzone/tracing-tutorial-backend.git) on GitHub.
19+
1. Fork the [sample application's repository](https://github.com/getsentry/tracing-tutorial-backend) on GitHub.
2020

2121
1. Clone the forked repository to your local environment:
2222

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
@@ -15,7 +15,7 @@ If you're using your own source code, you can skip this section. Instead:
1515

1616
The sample application is a basic frontend-only application using React and webpack.
1717

18-
1. Fork the [sample application's repository](https://github.com/getsentry/tracing-tutorial-setting-up-frontend) on GitHub.
18+
1. Fork the [sample application's repository](https://github.com/getsentry/tracing-tutorial-frontend) on GitHub.
1919

2020
1. Clone the forked repository to your local environment:
2121

@@ -115,7 +115,7 @@ In the `tracing-tutorial-frontend` project folder:
115115
116116
1. Open the sample application in your browser.
117117

118-
The sample app should be running at [http://localhost:3000/](http://localhost:3000/) or the URL output in your terminal in the last step.
118+
The sample app should be running at [http://localhost:3000/](http://localhost:3000/) or the URL output in your terminal in the last step. You should see a sample e-commerce page; the buttons on this page won't work correctly until you get your backend up and running.
119119

120120

121121
## Next

0 commit comments

Comments
 (0)