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

[chore] Remove references to the logging exporter #5143

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
Original file line number Diff line number Diff line change
Expand Up @@ -106,23 +106,23 @@ spec:
batch: {}

exporters:
logging:
debug:
verbosity: detailed

service:
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [logging]
exporters: [debug]
metrics:
receivers: [otlp, prometheus]
processors: []
exporters: [logging]
exporters: [debug]
logs:
receivers: [otlp]
processors: [batch]
exporters: [logging]
exporters: [debug]
```

First, set up a `port-forward` in Kubernetes, so that you can expose the Target
Expand Down
3 changes: 2 additions & 1 deletion content/en/docs/languages/erlang/exporters.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ processors:
send_batch_size: 1024
timeout: 5s
exporters:
debug:
otlp/jaeger:
endpoint: jaeger-all-in-one:4317
tls:
Expand All @@ -46,7 +47,7 @@ service:
traces:
receivers: [otlp]
processors: [batch]
exporters: [logging, otlp/jaeger]
exporters: [debug, otlp/jaeger]
```

For a more detailed example, you can view the
Expand Down