Skip to content
Merged
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
4 changes: 3 additions & 1 deletion modules/otel-config-collector.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -760,17 +760,19 @@ The OTLP HTTP exporter exports traces and metrics using the OpenTelemetry protoc
tls: # <2>
headers: # <3>
X-Scope-OrgID: "dev"
disable_keep_alives: false <4>

service:
pipelines:
traces:
exporters: [otlphttp]
metrics:
expoters: [otlphttp]
exporters: [otlphttp]
----
<1> The OTLP HTTP endpoint. If the `+https://+` scheme is used, then client transport security is enabled and overrides the `insecure` setting in the `tls`.
<2> The client side TLS configuration. Defines paths to TLS certificates.
<3> Headers are sent in every HTTP request.
<4> If true, disables HTTP keep-alives. It will only use the connection to the server for a single HTTP request.

[id="debug-exporter_{context}"]
==== Debug exporter
Expand Down