OpenTelemetry - CNCF/opentelemetry-collector: Release v0.51.0
Name: opentelemetry-collector
Owner: OpenTelemetry - CNCF
Release: v0.51.0
Released: 2022-05-11
License: Apache-2.0
Release Assets:
Images and binaries here: https://github.com/open-telemetry/opentelemetry-collector-releases/releases/tag/v0.51.0
🛑 Breaking changes 🛑
- Remove deprecated model module, everything is available in
pdata
andsemconv
. (#5281)- Old versions of the module are still available, but no new versions will be released.
- Remove deprecated LogRecord.Name field. (#5202)
🚩 Deprecations 🚩
- In preparation of migration to immutable slices for primitive type items, the following methods are renamed (#5344)
Value.BytesVal
func is deprecated in favor ofValue.MBytesVal
.Value.SetBytesVal
func is deprecated in favor ofValue.SetMBytesVal
.Value.UpdateBytes
func is deprecated in favor ofValue.UpdateMBytes
.Value.InsertBytes
func is deprecated in favor ofValue.InsertMBytes
.Value.UpsertBytes
func is deprecated in favor ofValue.UpsertMBytes
.<HistogramDataPoint|Buckets>.BucketCounts
funcs are deprecated in favor of<HistogramDataPoint|Buckets>.MBucketCounts
.<HistogramDataPoint|Buckets>.SetBucketCounts
funcs are deprecated in favor of<HistogramDataPoint|Buckets>.SetMBucketCounts
.HistogramDataPoint.ExplicitBounds
func is deprecated in favor ofHistogramDataPoint.MExplicitBounds
.HistogramDataPoint.SetExplicitBounds
func is deprecated in favor ofHistogramDataPoint.SetMExplicitBounds
.
💡 Enhancements 💡
pdata
: Exposepcommon.NewSliceFromRaw
andpcommon.Slice.AsRaw
functions (#5311)
🧰 Bug fixes 🧰
- Fix Windows Event Logs ignoring user-specified logging options (#5298)