Skip to content

Commit 6867d15

Browse files
committed
Improve acrolinx score
1 parent 7549e90 commit 6867d15

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

articles/azure-monitor/app/java-standalone-telemetry-processors-examples.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ This section shows how to include spans for an attribute processor. The processo
2222
A match requires the span name to be equal to `spanA` or `spanB`.
2323

2424
These spans match the include properties, and the processor actions are applied:
25-
* Span1 Name: 'spanA' Attributes: {env: dev, test_request: 123, credit_card: 1234}
26-
* Span2 Name: 'spanB' Attributes: {env: dev, test_request: false}
27-
* Span3 Name: 'spanA' Attributes: {env: 1, test_request: dev, credit_card: 1234}
25+
* `Span1` Name: 'spanA' Attributes: {env: dev, test_request: 123, credit_card: 1234}
26+
* `Span2` Name: 'spanB' Attributes: {env: dev, test_request: false}
27+
* `Span3` Name: 'spanA' Attributes: {env: 1, test_request: dev, credit_card: 1234}
2828

2929
This span doesn't match the include properties, and the processor actions aren't applied:
3030
* Span4 Name: 'spanC' Attributes: {env: dev, test_request: false}
@@ -62,9 +62,9 @@ This section demonstrates how to exclude spans for an attribute processor. This
6262
A match requires the span name to be equal to `spanA` or `spanB`.
6363

6464
The following spans match the exclude properties, and the processor actions aren't applied:
65-
* Span1 Name: 'spanA' Attributes: {env: dev, test_request: 123, credit_card: 1234}
66-
* Span2 Name: 'spanB' Attributes: {env: dev, test_request: false}
67-
* Span3 Name: 'spanA' Attributes: {env: 1, test_request: dev, credit_card: 1234}
65+
* `Span1` Name: 'spanA' Attributes: {env: dev, test_request: 123, credit_card: 1234}
66+
* `Span2` Name: 'spanB' Attributes: {env: dev, test_request: false}
67+
* `Span3` Name: 'spanA' Attributes: {env: 1, test_request: dev, credit_card: 1234}
6868

6969
This span doesn't match the exclude properties, and the processor actions are applied:
7070
* Span4 Name: 'spanC' Attributes: {env: dev, test_request: false}
@@ -104,11 +104,11 @@ A match requires the following conditions to be met:
104104
* The span must have an attribute that has key `test_request`.
105105

106106
The following spans match the exclude properties, and the processor actions aren't applied.
107-
* Span1 Name: 'spanB' Attributes: {env: dev, test_request: 123, credit_card: 1234}
108-
* Span2 Name: 'spanA' Attributes: {env: dev, test_request: false}
107+
* `Span1` Name: 'spanB' Attributes: {env: dev, test_request: 123, credit_card: 1234}
108+
* `Span2` Name: 'spanA' Attributes: {env: dev, test_request: false}
109109

110110
The following span doesn't match the exclude properties, and the processor actions are applied:
111-
* Span3 Name: 'spanB' Attributes: {env: 1, test_request: dev, credit_card: 1234}
111+
* `Span3` Name: 'spanB' Attributes: {env: 1, test_request: dev, credit_card: 1234}
112112
* Span4 Name: 'spanC' Attributes: {env: dev, dev_request: false}
113113

114114

@@ -155,11 +155,11 @@ properties indicate which spans should be processed. The exclude properties filt
155155

156156
In the following configuration, these spans match the properties, and processor actions are applied:
157157

158-
* Span1 Name: 'spanB' Attributes: {env: production, test_request: 123, credit_card: 1234, redact_trace: "false"}
159-
* Span2 Name: 'spanA' Attributes: {env: staging, test_request: false, redact_trace: true}
158+
* `Span1` Name: 'spanB' Attributes: {env: production, test_request: 123, credit_card: 1234, redact_trace: "false"}
159+
* `Span2` Name: 'spanA' Attributes: {env: staging, test_request: false, redact_trace: true}
160160

161161
These spans don't match the include properties, and processor actions aren't applied:
162-
* Span3 Name: 'spanB' Attributes: {env: production, test_request: true, credit_card: 1234, redact_trace: false}
162+
* `Span3` Name: 'spanB' Attributes: {env: production, test_request: true, credit_card: 1234, redact_trace: false}
163163
* Span4 Name: 'spanC' Attributes: {env: dev, test_request: false}
164164

165165
```json

0 commit comments

Comments
 (0)