Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update references to logging exporter #4179

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
verbosity: debug
verbosity: detailed

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@codeboten I missed this too


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
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]