Skip to content

Commit a2c3aea

Browse files
committed
fix: update references to logging exporter
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 22e7fe2 commit a2c3aea

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

instrumentation/nginx/test/conf/collector.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ receivers:
33
protocols:
44
grpc:
55
exporters:
6-
logging:
7-
logLevel: debug
6+
debug:
7+
verbosity: detailed
88
file:
99
path: /trace.json
1010
processors:
@@ -14,4 +14,4 @@ service:
1414
traces:
1515
receivers: [otlp]
1616
processors: [batch]
17-
exporters: [logging, file]
17+
exporters: [debug, file]

instrumentation/otel-webserver-module/otel-config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ receivers:
2020
http:
2121
zipkin:
2222
exporters:
23-
logging:
24-
loglevel: debug
23+
debug:
24+
verbosity: detailed
2525
zipkin:
2626
endpoint: "http://zipkin:9411/api/v2/spans"
2727
format: proto
@@ -30,5 +30,5 @@ service:
3030
pipelines:
3131
traces:
3232
receivers: [otlp, zipkin]
33-
exporters: [logging, zipkin]
33+
exporters: [debug, zipkin]
3434
processors: [resource]

0 commit comments

Comments
 (0)