Skip to content

Commit 7b1d75a

Browse files
author
Yuri Shkuro
committedSep 30, 2018
Clarify text
1 parent 254e16b commit 7b1d75a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎nodejs/lesson02/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ INFO Reporting span e0908f7e4104c7f9:e0908f7e4104c7f9:0:1
8383

8484
We got three spans, but there is a problem here. The first hexadecimal segment of the output represents Jaeger trace ID, yet they are all different. If we search for those IDs in the UI each one will represent a standalone trace with a single span. That's not what we wanted!
8585

86-
What we really wanted was to establish a causal relationship between the two new spans to the root span. We can do that by passing an additional option to the `startSpan` function:
86+
What we really wanted was to establish a causal relationship between the two new spans to the root span. We can do that by passing an additional option `childOf` to the `startSpan` function:
8787

8888
```javascript
8989
const formatString = (rootSpan, helloTo) => {

0 commit comments

Comments
 (0)
Please sign in to comment.