You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tutorial/content/exercises/instrumentation/manual_java/traces/index.md
+9-8Lines changed: 9 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,14 +36,14 @@ By the end of this lab, you will be able to:
36
36
37
37
* This exercise is based on the following repository [repository](https://github.com/NovatecConsulting/opentelemetry-training/)
38
38
* 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.
- listens on port 8080 and serves serveral CRUD style HTTP endpoints
46
+
- listens on port 8080 and serves several CRUD style HTTP endpoints
47
47
- simulates an application we want to instrument
48
48
49
49
@@ -54,7 +54,7 @@ Navigate to
54
54
55
55
```sh
56
56
cd$EXERCISES
57
-
cd manual-instrumentation-java/initial/todobackend-springboot
57
+
cd manual-instrumentation-traces-java/initial/todobackend-springboot
58
58
```
59
59
60
60
Run:
@@ -79,7 +79,7 @@ You should see a response of the following type:
79
79
```
80
80
81
81
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`
83
83
84
84
---
85
85
@@ -141,7 +141,8 @@ Within the same file add the following code snippet
141
141
```
142
142
143
143
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.
0 commit comments