Skip to content

Commit

Permalink
fix: update references to logging exporter
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
codeboten committed Sep 20, 2024
1 parent 22e7fe2 commit a2c3aea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions instrumentation/nginx/test/conf/collector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ receivers:
protocols:
grpc:
exporters:
logging:
logLevel: debug
debug:
verbosity: detailed
file:
path: /trace.json
processors:
Expand All @@ -14,4 +14,4 @@ service:
traces:
receivers: [otlp]
processors: [batch]
exporters: [logging, file]
exporters: [debug, file]
6 changes: 3 additions & 3 deletions instrumentation/otel-webserver-module/otel-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ receivers:
http:
zipkin:
exporters:
logging:
loglevel: debug
debug:
verbosity: detailed
zipkin:
endpoint: "http://zipkin:9411/api/v2/spans"
format: proto
Expand All @@ -30,5 +30,5 @@ service:
pipelines:
traces:
receivers: [otlp, zipkin]
exporters: [logging, zipkin]
exporters: [debug, zipkin]
processors: [resource]

0 comments on commit a2c3aea

Please sign in to comment.