We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e79f548 commit ec7c3d1Copy full SHA for ec7c3d1
content/en/docs/collector/configuration.md
@@ -627,6 +627,24 @@ service:
627
processors: [batch, memory_limiter]
628
exporters: [opencensus, zipkin]
629
```
630
+As with components, use the `type[/name]` syntax to create additional pipelines for a given type.
631
+
632
+```yaml
633
+service:
634
+ pipelines:
635
+ metrics:
636
+ receivers: [opencensus, prometheus]
637
+ processors: [batch]
638
+ exporters: [opencensus, prometheus]
639
+ traces:
640
+ receivers: [opencensus, jaeger]
641
+ processors: [batch, memory_limiter]
642
+ exporters: [opencensus, zipkin]
643
+ traces/better_pipeline:
644
+ receivers: [opencensus]
645
646
+ exporters: [zipkin]
647
+```
648
649
### Telemetry
650
0 commit comments