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 <223565+codeboten@users.noreply.github.com>
  • Loading branch information
codeboten committed Sep 20, 2024
1 parent 0db4db5 commit 4ff10cc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions examples/roll_dice/otel-collector-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ exporters:
tls:
insecure: true

logging:
loglevel: debug
debug:
verbosity: detailed
sampling_initial: 1
sampling_thereafter: 1

Expand All @@ -36,12 +36,12 @@ service:
traces:
receivers: [otlp]
processors: [batch]
exporters: [logging, otlp]
exporters: [debug, otlp]
metrics:
receivers: [otlp]
processors: [batch]
exporters: [logging]
exporters: [debug]
logs:
receivers: [otlp]
processors: [batch]
exporters: [logging]
exporters: [debug]
10 changes: 5 additions & 5 deletions examples/roll_dice_elli/otel-collector-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ exporters:
tls:
insecure: true

logging:
loglevel: debug
debug:
verbosity: detailed
sampling_initial: 1
sampling_thereafter: 1

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

0 comments on commit 4ff10cc

Please sign in to comment.