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

Clarify OTLP server components MUST support none/gzip compression. #1955

Merged
merged 10 commits into from
Sep 29, 2021
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ release.
### OpenTelemetry Protocol

- Add environment variables for configuring the OTLP exporter protocol (`grpc`, `http/protobuf`, `http/json`) ([#1880](https://github.com/open-telemetry/opentelemetry-specification/pull/1880))
- Clarify OTLP transports MUST support none/gzip compression ([#1955](https://github.com/open-telemetry/opentelemetry-specification/pull/1955))

### SDK Configuration

Expand Down
6 changes: 6 additions & 0 deletions specification/protocol/otlp.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,12 @@ OTLP is a request/response style protocols: the clients send requests, the
server replies with corresponding responses. This document defines one requests
and response type: `Export`.

All transports MUST support in the client and server components the following
carlosalberto marked this conversation as resolved.
Show resolved Hide resolved
compression options:

* No compression, denoted by `none`.
carlosalberto marked this conversation as resolved.
Show resolved Hide resolved
* Gzip compression, denoted by `gzip`.

### OTLP/gRPC

**Status**: [Stable](../document-status.md)
Expand Down