Skip to content

Commit afcbcab

Browse files
committed
Fixing bookmark links
1 parent c6455c9 commit afcbcab

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/azure-monitor/app/opentelemetry-enable.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1607,7 +1607,7 @@ You can populate the _client_IP_ field for requests by setting the `http.client_
16071607

16081608
##### [.NET](#tab/net)
16091609

1610-
Use the add [custom property example](#add-a-custom-property-to-a-trace), but replace the following lines of code in `ActivityEnrichingProcessor.cs`:
1610+
Use the add [custom property example](#add-a-custom-property-to-a-span), but replace the following lines of code in `ActivityEnrichingProcessor.cs`:
16111611

16121612
```C#
16131613
// only applicable in case of activity.Kind == Server
@@ -1620,7 +1620,7 @@ Java automatically populates this field.
16201620

16211621
##### [Node.js](#tab/nodejs)
16221622

1623-
Use the add [custom property example](#add-a-custom-property-to-a-trace), but replace the following lines of code:
1623+
Use the add [custom property example](#add-a-custom-property-to-a-span), but replace the following lines of code:
16241624

16251625
```javascript
16261626
...
@@ -1637,7 +1637,7 @@ class SpanEnrichingProcessor {
16371637

16381638
##### [Python](#tab/python)
16391639

1640-
Use the add [custom property example](#add-a-custom-property-to-a-trace), but replace the following lines of code in `SpanEnrichingProcessor.py`:
1640+
Use the add [custom property example](#add-a-custom-property-to-a-span), but replace the following lines of code in `SpanEnrichingProcessor.py`:
16411641

16421642
```python
16431643
span._attributes["http.client_ip"] = "<IP Address>"
@@ -1684,7 +1684,7 @@ Populate the `user ID` field in the `requests`, `dependencies`, or `exceptions`
16841684

16851685
#### [Node.js](#tab/nodejs)
16861686

1687-
Use the add [custom property example](#add-a-custom-property-to-a-trace), but replace the following lines of code:
1687+
Use the add [custom property example](#add-a-custom-property-to-a-span), but replace the following lines of code:
16881688

16891689
```typescript
16901690
...
@@ -1701,7 +1701,7 @@ class SpanEnrichingProcessor implements SpanProcessor{
17011701

17021702
##### [Python](#tab/python)
17031703

1704-
Use the add [custom property example](#add-a-custom-property-to-a-trace), but replace the following lines of code:
1704+
Use the add [custom property example](#add-a-custom-property-to-a-span), but replace the following lines of code:
17051705

17061706
```python
17071707
span._attributes["enduser.id"] = "<User ID>"
@@ -1824,7 +1824,7 @@ See [sampling overrides](java-standalone-config.md#sampling-overrides-preview) a
18241824
```
18251825

18261826
2. Use a custom processor. You can use a custom span processor to exclude certain spans from being exported. To mark spans to not be exported, set `TraceFlag` to `DEFAULT`.
1827-
Use the add [custom property example](#add-a-custom-property-to-a-trace), but replace the following lines of code:
1827+
Use the add [custom property example](#add-a-custom-property-to-a-span), but replace the following lines of code:
18281828

18291829
```javascript
18301830
const { SpanKind, TraceFlags } = require("@opentelemetry/api");

0 commit comments

Comments
 (0)