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 0680863 commit d1701be
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions examples/traces/demo/collector/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ receivers:
grpc:

exporters:
logging:
logLevel: debug
debug:
verbosity: detailed
zipkin:
endpoint: "http://zipkin:9411/api/v2/spans"
jaeger:
Expand All @@ -19,6 +19,6 @@ service:
receivers:
- otlp
exporters:
- logging
- debug
- zipkin
- jaeger
8 changes: 4 additions & 4 deletions files/collector/otel-collector-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ receivers:
exporters:
zipkin:
endpoint: "http://zipkin:9411/api/v2/spans"
logging:
debug:
verbosity: detailed

processors:
Expand All @@ -27,12 +27,12 @@ service:
pipelines:
traces:
receivers: [otlp, zipkin]
exporters: [logging]
exporters: [debug]
processors: [batch]
metrics:
receivers: [otlp]
exporters: [logging]
exporters: [debug]
logs:
receivers: [ otlp ]
processors: [ batch ]
exporters: [ logging ]
exporters: [ debug ]

0 comments on commit d1701be

Please sign in to comment.