Skip to content

Commit

Permalink
fix: update references to logging exporter (#1528)
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 authored Sep 23, 2024
1 parent bf4a407 commit 7c6351e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions collector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,16 +83,16 @@ receivers:
grpc:

exporters:
logging:
loglevel: debug
debug:
verbosity: detailed
otlp:
endpoint: { backend endpoint }

service:
pipelines:
traces:
receivers: [otlp]
exporters: [logging, otlp]
exporters: [debug, otlp]
```
Once the file has been deployed with a Lambda, configuring the `OPENTELEMETRY_COLLECTOR_CONFIG_URI` will tell the OpenTelemetry extension where to find the collector configuration:
Expand Down
8 changes: 4 additions & 4 deletions collector/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ receivers:
endpoint: "localhost:4318"

exporters:
logging:
loglevel: debug
debug:
verbosity: detailed

service:
pipelines:
traces:
receivers: [otlp]
exporters: [logging]
exporters: [debug]
metrics:
receivers: [otlp]
exporters: [logging]
exporters: [debug]
telemetry:
metrics:
address: localhost:8888

0 comments on commit 7c6351e

Please sign in to comment.