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: specification/protocol/exporter.md
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,14 @@ The following configuration options MUST be available to configure the OTLP expo
13
13
| Insecure | Whether to enable client transport security for the exporter's `grpc` or `http` connection. |`false`|`OTEL_EXPORTER_OTLP_INSECURE``OTEL_EXPORTER_OTLP_SPAN_INSECURE``OTEL_EXPORTER_OTLP_METRIC_INSECURE`|
14
14
| Certificate File | Certificate file for TLS credentials of gRPC client. Should only be used if `insecure` is set to `false`. | n/a |`OTEL_EXPORTER_OTLP_CERTIFICATE``OTEL_EXPORTER_OTLP_SPAN_CERTIFICATE``OTEL_EXPORTER_OTLP_METRIC_CERTIFICATE`|
15
15
| Headers | The headers associated with gRPC or HTTP requests. | n/a |`OTEL_EXPORTER_OTLP_HEADERS``OTEL_EXPORTER_OTLP_SPAN_HEADERS``OTEL_EXPORTER_OTLP_METRIC_HEADERS`|
16
-
| Compression | Compression key for supported compression types. Supported compression: `gzip`| no compression|`OTEL_EXPORTER_OTLP_COMPRESSION``OTEL_EXPORTER_OTLP_SPAN_COMPRESSION``OTEL_EXPORTER_OTLP_METRIC_COMPRESSION`|
16
+
| Compression | Compression key for supported compression types. | No value|`OTEL_EXPORTER_OTLP_COMPRESSION``OTEL_EXPORTER_OTLP_SPAN_COMPRESSION``OTEL_EXPORTER_OTLP_METRIC_COMPRESSION`|
17
17
| Timeout | Max waiting time for the backend to process each spans or metrics batch. | 10s |`OTEL_EXPORTER_OTLP_TIMEOUT``OTEL_EXPORTER_OTLP_SPAN_TIMEOUT``OTEL_EXPORTER_OTLP_METRIC_TIMEOUT`|
18
18
19
+
Supported values for OTEL_EXPORTER_OTLP_*COMPRESSION options:
20
+
21
+
- If the value is missing then compressions is disabled.
22
+
-`gzip` is the only specified compression method for now. Other options MAY be supported by language SDKs and should be documented for each particular language.
23
+
19
24
Example 1
20
25
21
26
The following configuration sends all signals to the same collector:
0 commit comments