-
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 support for slices to non-pointers, use non-nullable AnyValue #2192
Conversation
d4c2ed4
to
c750bf8
Compare
Codecov Report
@@ Coverage Diff @@
## master #2192 +/- ##
==========================================
- Coverage 92.00% 91.99% -0.01%
==========================================
Files 271 271
Lines 15632 15615 -17
==========================================
- Hits 14382 14365 -17
Misses 850 850
Partials 400 400
Continue to review full report at Codecov.
|
c750bf8
to
1376e55
Compare
30ad42e
to
bb51759
Compare
@tigrannajaryan friendly ping 👍 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice performance improvement and simplification of AttributeValue code at the same time.
Before: ``` goos: darwin goarch: amd64 pkg: go.opentelemetry.io/collector/consumer/pdata BenchmarkTracesFromOtlp BenchmarkTracesFromOtlp-16 584 1805875 ns/op 940352 B/op 29954 allocs/op PASS ``` After: ``` goos: darwin goarch: amd64 pkg: go.opentelemetry.io/collector/consumer/pdata BenchmarkTracesFromOtlp BenchmarkTracesFromOtlp-16 681 1575996 ns/op 857915 B/op 24802 allocs/op PASS ``` Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
bb51759
to
6ed2e73
Compare
@tigrannajaryan PTAL |
Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
…y#2192) Bumps [boto3](https://github.com/boto/boto3) from 1.24.95 to 1.25.4. - [Release notes](https://github.com/boto/boto3/releases) - [Changelog](https://github.com/boto/boto3/blob/develop/CHANGELOG.rst) - [Commits](boto/boto3@1.24.95...1.25.4) --- updated-dependencies: - dependency-name: boto3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Fixes #2188
Before:
After:
Signed-off-by: Bogdan Drutu bogdandrutu@gmail.com