You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/otel-config-collector.adoc
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -760,17 +760,19 @@ The OTLP HTTP exporter exports traces and metrics using the OpenTelemetry protoc
760
760
tls: # <2>
761
761
headers: # <3>
762
762
X-Scope-OrgID: "dev"
763
+
disable_keep_alives: false <4>
763
764
764
765
service:
765
766
pipelines:
766
767
traces:
767
768
exporters: [otlphttp]
768
769
metrics:
769
-
expoters: [otlphttp]
770
+
exporters: [otlphttp]
770
771
----
771
772
<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`.
772
773
<2> The client side TLS configuration. Defines paths to TLS certificates.
773
774
<3> Headers are sent in every HTTP request.
775
+
<4> If true, disables HTTP keep-alives. It will only use the connection to the server for a single HTTP request.
0 commit comments