We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73afa80 commit bd2716cCopy full SHA for bd2716c
tests/e2e/smoke-simplest/00-install.yaml
@@ -3,25 +3,23 @@ kind: OpenTelemetryCollector
3
metadata:
4
name: simplest
5
spec:
6
- image: otel/opentelemetry-collector-contrib:latest
7
config: |
8
receivers:
+ jaeger:
9
+ protocols:
10
+ grpc:
11
otlp:
12
protocols:
- grpc: {}
- http: {}
13
14
+ http:
15
processors:
- k8sattributes: {}
- batch: {}
16
+
17
exporters:
18
debug:
19
20
service:
21
pipelines:
- metrics:
- receivers:
22
- - otlp
23
- processors:
24
- - k8sattributes
25
- - batch
26
- exporters:
27
- - debug
+ traces:
+ receivers: [jaeger,otlp]
+ processors: []
+ exporters: [debug]
0 commit comments