Skip to content

Commit

Permalink
docs: update references to logging exporter (#4179)
Browse files Browse the repository at this point in the history
  • Loading branch information
codeboten authored Sep 5, 2024
1 parent d0fb920 commit 9697f80
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions docs/examples/logs/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Start the Collector locally to see data being exported. Write the following file
endpoint: 0.0.0.0:4317
exporters:
logging:
loglevel: debug
debug:
verbosity: detailed
processors:
batch:
Expand All @@ -29,11 +29,11 @@ Start the Collector locally to see data being exported. Write the following file
logs:
receivers: [otlp]
processors: [batch]
exporters: [logging]
exporters: [debug]
traces:
receivers: [otlp]
processors: [batch]
exporters: [logging]
exporters: [debug]
Then start the Docker container:

Expand Down
8 changes: 4 additions & 4 deletions docs/examples/logs/otel-collector-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ receivers:
endpoint: 0.0.0.0:4317

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

processors:
batch:
Expand All @@ -16,8 +16,8 @@ service:
logs:
receivers: [otlp]
processors: [batch]
exporters: [logging]
exporters: [debug]
traces:
receivers: [otlp]
processors: [batch]
exporters: [logging]
exporters: [debug]
4 changes: 2 additions & 2 deletions docs/examples/metrics/instruments/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Start the Collector locally to see data being exported. Write the following file
endpoint: 0.0.0.0:4317
exporters:
logging:
debug:
processors:
batch:
Expand All @@ -22,7 +22,7 @@ Start the Collector locally to see data being exported. Write the following file
pipelines:
metrics:
receivers: [otlp]
exporters: [logging]
exporters: [debug]
Then start the Docker container:

Expand Down
4 changes: 2 additions & 2 deletions docs/examples/metrics/instruments/otel-collector-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ receivers:
endpoint: 0.0.0.0:4317

exporters:
logging:
debug:

processors:
batch:
Expand All @@ -14,4 +14,4 @@ service:
pipelines:
metrics:
receivers: [otlp]
exporters: [logging]
exporters: [debug]
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ receivers:
exporters:
jaeger_grpc:
endpoint: jaeger-all-in-one:14250
logging: {}
debug:

processors:
batch:
Expand All @@ -15,5 +15,5 @@ service:
pipelines:
traces:
receivers: [opencensus]
exporters: [jaeger_grpc, logging]
exporters: [jaeger_grpc, debug]
processors: [batch, queued_retry]

0 comments on commit 9697f80

Please sign in to comment.