Skip to content

Commit 3b6f381

Browse files
committed
Fix indentation
1 parent 6321f5c commit 3b6f381

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

content/en/ninja-workshops/10-advanced-otel/8-routing-data/8-2-pipelines.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ weight: 2
1111
1. **Standard pipeline**: This pipeline processes all spans that do not match the routing rule. Add it below the existing `traces:` pipeline, keeping the configuration unchanged for now:
1212

1313
```yaml
14-
traces/standard: # Default pipeline for unmatched spans
15-
receivers:
16-
- routing # Receive data from the routing connector
17-
processors:
18-
- memory_limiter # Limits memory usage
19-
- resource/add_mode # Adds collector mode metadata
20-
exporters:
21-
- debug # Debug exporter
22-
- file/traces/standard # File exporter for unmatched spans
14+
traces/standard: # Default pipeline for unmatched spans
15+
receivers:
16+
- routing # Receive data from the routing connector
17+
processors:
18+
- memory_limiter # Limits memory usage
19+
- resource/add_mode # Adds collector mode metadata
20+
exporters:
21+
- debug # Debug exporter
22+
- file/traces/standard # File exporter for unmatched spans
2323
```
2424
2525
2. **Security pipeline**: This pipeline will handle all spans that match the routing rule:
@@ -47,7 +47,7 @@ weight: 2
4747
traces: # Original traces pipeline
4848
receivers:
4949
- otlp # OTLP Receiver
50-
processors:
50+
processors: []
5151
exporters:
5252
- routing # Routing Connector
5353
```

0 commit comments

Comments
 (0)