Skip to content

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

content/en/docs/collector/configuration.md

+20
Original file line numberDiff line numberDiff line change
@@ -628,6 +628,26 @@ service:
628628
exporters: [opencensus, zipkin]
629629
```
630630

631+
When you need to create more pipelines for the same type, use `type[/name]` form as
632+
described in [design doc](https://github.com/open-o11y/opentelemetry-collector-testing/blob/master/docs/design.md#receivers)
633+
634+
```yaml
635+
service:
636+
pipelines:
637+
metrics:
638+
receivers: [opencensus, prometheus]
639+
processors: [batch]
640+
exporters: [opencensus, prometheus]
641+
traces:
642+
receivers: [opencensus, jaeger]
643+
processors: [batch, memory_limiter]
644+
exporters: [opencensus, zipkin]
645+
traces/better_pipeline:
646+
receivers: [opencensus]
647+
processors: [batch]
648+
exporters: [zipkin]
649+
```
650+
631651
### Telemetry
632652

633653
The `telemetry` config section is where you can set up observability for the

0 commit comments

Comments
 (0)