File tree 1 file changed +20
-0
lines changed
content/en/docs/collector
1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -628,6 +628,26 @@ service:
628
628
exporters: [opencensus, zipkin]
629
629
` ` `
630
630
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
+
631
651
# ## Telemetry
632
652
633
653
The `telemetry` config section is where you can set up observability for the
You can’t perform that action at this time.
0 commit comments