Skip to content

Commit 066a84a

Browse files
codebotenbrettmc
authored andcommitted
fix: update references to logging exporter (open-telemetry#1383)
This exporter has been replaced by the debug exporter and will be removed soon. Related to open-telemetry/opentelemetry-collector#11037 Signed-off-by: Alex Boten <[email protected]>
1 parent 9ee2857 commit 066a84a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

examples/traces/demo/collector/config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ receivers:
44
grpc:
55

66
exporters:
7-
logging:
8-
logLevel: debug
7+
debug:
8+
verbosity: detailed
99
zipkin:
1010
endpoint: "http://zipkin:9411/api/v2/spans"
1111
jaeger:
@@ -19,6 +19,6 @@ service:
1919
receivers:
2020
- otlp
2121
exporters:
22-
- logging
22+
- debug
2323
- zipkin
2424
- jaeger

files/collector/otel-collector-config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ receivers:
88
exporters:
99
zipkin:
1010
endpoint: "http://zipkin:9411/api/v2/spans"
11-
logging:
11+
debug:
1212
verbosity: detailed
1313

1414
processors:
@@ -27,12 +27,12 @@ service:
2727
pipelines:
2828
traces:
2929
receivers: [otlp, zipkin]
30-
exporters: [logging]
30+
exporters: [debug]
3131
processors: [batch]
3232
metrics:
3333
receivers: [otlp]
34-
exporters: [logging]
34+
exporters: [debug]
3535
logs:
3636
receivers: [ otlp ]
3737
processors: [ batch ]
38-
exporters: [ logging ]
38+
exporters: [ debug ]

0 commit comments

Comments
 (0)