Skip to content

Commit d86cdcb

Browse files
committed
change paths in docs
1 parent 8ab82d2 commit d86cdcb

File tree

1 file changed

+9
-8
lines changed
  • tutorial/content/exercises/instrumentation/manual_java/traces

1 file changed

+9
-8
lines changed

tutorial/content/exercises/instrumentation/manual_java/traces/index.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ By the end of this lab, you will be able to:
3636

3737
* This exercise is based on the following repository [repository](https://github.com/NovatecConsulting/opentelemetry-training/)
3838
* All exercises are in the subdirectory `exercises`. There is also an environment variable `$EXERCISES` pointing to this directory. All directories given are relative to this one.
39-
* Initial directory: `manual-instrumentation-java/initial`
40-
* Solution directory: `manual-instrumentation-java/solution`
41-
* Java/Spring Boot backend component: `manual-instrumentation-java/initial/todobackend-springboot`
39+
* Initial directory: `manual-instrumentation-traces-java/initial`
40+
* Solution directory: `manual-instrumentation-traces-java/solution`
41+
* Java/Spring Boot backend component: `manual-instrumentation-traces-java/initial/todobackend-springboot`
4242

4343
The environment consists of one component:
44-
1. a Spring Boot REST API service
44+
- Spring Boot REST API service
4545
- uses [Spring Boot ](https://www.spring.io) framework
46-
- listens on port 8080 and serves serveral CRUD style HTTP endpoints
46+
- listens on port 8080 and serves several CRUD style HTTP endpoints
4747
- simulates an application we want to instrument
4848

4949

@@ -54,7 +54,7 @@ Navigate to
5454

5555
```sh
5656
cd $EXERCISES
57-
cd manual-instrumentation-java/initial/todobackend-springboot
57+
cd manual-instrumentation-traces-java/initial/todobackend-springboot
5858
```
5959

6060
Run:
@@ -79,7 +79,7 @@ You should see a response of the following type:
7979
```
8080

8181
To keep things concise, code snippets only contain what's relevant to that step.
82-
If you get stuck, you can find the solution in the `exercises/manual-instrumentation-java/solution`
82+
If you get stuck, you can find the solution in the `exercises/manual-instrumentation-traces-java/solution`
8383

8484
---
8585

@@ -141,7 +141,8 @@ Within the same file add the following code snippet
141141
```
142142

143143
Within the folder of the main application file `TodobackendApplication.java` add a new file called `OpenTelemetryConfiguration.java`.
144-
We'll use it to separate tracing-related configuration from the main application. The folder is `manual-instrumentation-java/initial/todobackend-springboot/src/main/java/io/novatec/todobackend`. It is recommended to edit the file not via command line, but to use your built-in editor.
144+
We'll use it to separate tracing-related configuration from the main application. The folder is `manual-instrumentation-traces-java/initial/todobackend-springboot/src/main/java/io/novatec/todobackend`.
145+
It is recommended to edit the file not via command line, but to use your built-in editor.
145146

146147
Add the following content to this file:
147148

0 commit comments

Comments
 (0)