Skip to content
Closed
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 @@ -43,7 +43,10 @@ The OTLP gRPC Exporter exports traces and metrics by using the OpenTelemetry pro
insecure_skip_verify: false # # <4>
reload_interval: 1h # <5>
server_name_override: <name> # <6>
headers: # <7>
tpm:
enabled: false # <7>
path: /dev/tpmrm0 # <8>
headers: # <9>
X-Scope-OrgID: "dev"
service:
pipelines:
Expand All @@ -59,7 +62,9 @@ The OTLP gRPC Exporter exports traces and metrics by using the OpenTelemetry pro
<4> Skips verifying the certificate when set to `true`. The default value is `false`.
<5> Specifies the time interval at which the certificate is reloaded. If the value is not set, the certificate is never reloaded. The `reload_interval` accepts a string containing valid units of time such as `ns`, `us` (or `µs`), `ms`, `s`, `m`, `h`.
<6> Overrides the virtual host name of authority such as the authority header field in requests. You can use this for testing.
<7> Headers are sent for every request performed during an established connection.
<7> Enables reading the TSS2 private key (`key_file`) from Trusted Platform Module (TPM). The default value is `false`.
Copy link
Member Author

Choose a reason for hiding this comment

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

@max-cx can we add Tech preview to point 7 and 8 ?

<8> The path to the TPM device. The path must be provided if the TPM is enabled.
<9> Headers are sent for every request performed during an established connection.

[id="otlp-http-exporter_{context}"]
== OTLP HTTP Exporter
Expand Down