We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 974199b commit f62946dCopy full SHA for f62946d
content/en/docs/collector/configuration.md
@@ -638,6 +638,24 @@ service:
638
processors: [batch, memory_limiter]
639
exporters: [opencensus, zipkin]
640
```
641
+As with components, use the `type[/name]` syntax to create additional pipelines for a given type.
642
+
643
+```yaml
644
+service:
645
+ pipelines:
646
+ metrics:
647
+ receivers: [opencensus, prometheus]
648
+ processors: [batch]
649
+ exporters: [opencensus, prometheus]
650
+ traces:
651
+ receivers: [opencensus, jaeger]
652
+ processors: [batch, memory_limiter]
653
+ exporters: [opencensus, zipkin]
654
+ traces/better_pipeline:
655
+ receivers: [opencensus]
656
657
+ exporters: [zipkin]
658
+```
659
660
### Telemetry
661
0 commit comments