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
exporter/debug: Add logging of dropped attributes, events, and links counts in detailed verbosity (#14202)
extension/memory_limiter: The memorylimiter extension can be used as an HTTP/GRPC middleware. (#14081)
pkg/config/configgrpc: Statically validate gRPC endpoint (#10451)
This validation was already done in the OTLP exporter. It will now be applied to any gRPC client.
pkg/service: Add support to disabling adding resource attributes as zap fields in internal logging (#13869)
Note that this does not affect logs exported through OTLP.
API Changelog
🛑 Breaking changes 🛑
pdata/xpdata: Rename Entity.IDAttributes() to Entity.IdentifyingAttributes() and Entity.DescriptionAttributes() to Entity.DescriptiveAttributes() to align with OpenTelemetry specification terminology for attributes. (#14275)
pkg/exporterhelper: Use configoptional.Optional for the exporterhelper.QueueBatchConfig (#14155)
It's recommended to change the field type in your component configuration to be configoptional.Optional[exporterhelper.QueueBatchConfig] to keep the enabled subfield. Use configoptional.Some(exporterhelper.NewDefaultQueueConfig()) to enable by default. Use configoptional.Default(exporterhelper.NewDefaultQueueConfig()) to disable by default.
🚩 Deprecations 🚩
pkg/service: Deprecate Settings.LoggingOptions and telemetry.LoggerSettings.ZapOptions, add telemetry.LoggerSettings.BuildZapLogger (#14002)
BuildZapLogger provides a more flexible way to build the Zap logger,
since the function will have access to the zap.Config. This is used
in otelcol to install a Windows Event Log output when the zap config
does not specify any file output.
pkg/confmap: Ensure that embedded structs are not overwritten after Unmarshal is called (#14213)
This allows embedding structs which implement Unmarshal and contain a configopaque.String.