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 622e4a8 commit fec53c8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions javaagent/collector-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ receivers:
http:
endpoint: "0.0.0.0:4318"
exporters:
logging:
debug:
verbosity: detailed
service:
pipelines:
metrics:
receivers: [otlp]
exporters: [logging]
exporters: [debug]
traces:
receivers: [otlp]
exporters: [logging]
exporters: [debug]
logs:
receivers: [otlp]
exporters: [logging]
exporters: [debug]
4 changes: 2 additions & 2 deletions log-appender/otel-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ receivers:
grpc:
endpoint: collector:4317
exporters:
logging:
debug:
verbosity: detailed
service:
pipelines:
logs:
receivers: [otlp]
exporters: [logging]
exporters: [debug]
8 changes: 4 additions & 4 deletions otlp/docker/otel-collector-config-demo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ exporters:
namespace: promexample
const_labels:
label1: value1
logging:
loglevel: debug
debug:
verbosity: detailed

zipkin:
endpoint: "http://zipkin-all-in-one:9411/api/v2/spans"
Expand Down Expand Up @@ -43,8 +43,8 @@ service:
traces:
receivers: [otlp]
processors: [batch]
exporters: [logging, zipkin, otlp/jaeger]
exporters: [debug, zipkin, otlp/jaeger]
metrics:
receivers: [otlp]
processors: [batch]
exporters: [logging, prometheus]
exporters: [debug, prometheus]
8 changes: 4 additions & 4 deletions spring-native/collector-spring-native-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ receivers:
http:
endpoint: "0.0.0.0:4318"
exporters:
logging:
debug:
verbosity: detailed
service:
pipelines:
metrics:
receivers: [otlp]
exporters: [logging]
exporters: [debug]
traces:
receivers: [otlp]
exporters: [logging]
exporters: [debug]
logs:
receivers: [otlp]
exporters: [logging]
exporters: [debug]

0 comments on commit fec53c8

Please sign in to comment.