Skip to content

Commit 5009fb7

Browse files
authored
fix: update references to logging exporter (open-telemetry#486)
* 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]> * update collector image Signed-off-by: Alex Boten <[email protected]> --------- Signed-off-by: Alex Boten <[email protected]>
1 parent 6392b5f commit 5009fb7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

instrumentation/nginx/test/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
collector:
3-
image: otel/opentelemetry-collector:0.113.0
3+
image: otel/opentelemetry-collector:latest
44
command: ["--config=/etc/otel/config.yml"]
55
volumes:
66
- ${TEST_ROOT:-.}/conf/collector.yml:/etc/otel/config.yml

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

Lines changed: 3 additions & 3 deletions
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)