fix: update references to logging exporter (#1383)

This exporter has been replaced by the debug exporter and will be removed soon. Related to https://github.com/open-telemetry/opentelemetry-collector/pull/11037

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
This commit is contained in:
Alex Boten 2024-09-22 00:42:55 -07:00 committed by GitHub
parent 068086347b
commit 3be58cff57
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 7 deletions

View File

@ -4,8 +4,8 @@ receivers:
grpc:
exporters:
logging:
logLevel: debug
debug:
verbosity: detailed
zipkin:
endpoint: "http://zipkin:9411/api/v2/spans"
jaeger:
@ -19,6 +19,6 @@ service:
receivers:
- otlp
exporters:
- logging
- debug
- zipkin
- jaeger

View File

@ -8,7 +8,7 @@ receivers:
exporters:
zipkin:
endpoint: "http://zipkin:9411/api/v2/spans"
logging:
debug:
verbosity: detailed
processors:
@ -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 ]