-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Add "compression" option to otlphttp exporter #2502
Add "compression" option to otlphttp exporter #2502
Conversation
9795f46
to
c77bb28
Compare
Codecov Report
@@ Coverage Diff @@
## main #2502 +/- ##
==========================================
- Coverage 91.76% 91.73% -0.03%
==========================================
Files 266 266
Lines 15111 15136 +25
==========================================
+ Hits 13866 13885 +19
- Misses 866 869 +3
- Partials 379 382 +3
Continue to review full report at Codecov.
|
c77bb28
to
c7e7137
Compare
Don't merge yet, I need to check all contrib exporters to make sure they are not affected. |
c7e7137
to
5764757
Compare
5764757
to
bf47d96
Compare
OK, changed the implementation to make "compression" option opt-in for exporters. It was dangerous to enable for all http exporters since some exporter already do their own compression. See updated PR description. |
bf47d96
to
965f750
Compare
contrib_tests failure is expected. Will need to fix after this is merged. |
Now ready for review. |
22cbd82
to
982a57e
Compare
982a57e
to
360d81f
Compare
…y#2502) Bumps [go.etcd.io/etcd/client/v2](https://github.com/etcd-io/etcd) from 2.305.6 to 2.305.7. - [Release notes](https://github.com/etcd-io/etcd/releases) - [Changelog](https://github.com/etcd-io/etcd/blob/main/Dockerfile-release.amd64) - [Commits](etcd-io/etcd@client/v2.305.6...client/v2.305.7) --- updated-dependencies: - dependency-name: go.etcd.io/etcd/client/v2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…etry#2502) * Upgrade compiler in CI * Backport abseil fix for clang-15. * More backport for clang-15 * Missed backport bits. * Fixed a new warning.
The default value of "compression" option is empty and results in no compression,
which is the same as the old behavior. You can also specify "compression: gzip"
which will result in gzip encoding of outgoing http requests.