Images and binaries here: https://github.com/open-telemetry/opentelemetry-collector-releases/releases/tag/v0.123.0
End User Changelog
🛑 Breaking changes 🛑
service/telemetry
: Marktelemetry.disableAddressFieldForInternalTelemetry
as beta, usage of deprecated service::telemetry::address are ignored (#12756)
To restore the previous behavior disabletelemetry.disableAddressFieldForInternalTelemetry
feature gate.exporterbatch
: Remove deprecated fieldsmin_size_items
andmax_size_items
from batch config. (#12684)
🚩 Deprecations 🚩
otlpexporter
: Mark BatcherConfig as deprecated, usesending_queue::batch
instead (#12726)exporterhelper
: Deprecateblocking
in favor ofblock_on_overflow
. (#12710)exporterhelper
: Deprecate configuring exporter batching separately. Usesending_queue::batch
instead. (#12772)
Moving the batching configuration tosending_queue::batch
requires settingsending_queue::sizer
toitems
which means thatsending_queue::queue_size
needs to be also increased by the average batch size number (roughly
x5000 for the default batching configuration).
See https://github.com/open-telemetry/opentelemetry-collector/tree/main/exporter/exporterhelper#configuration
💡 Enhancements 💡
-
exporterhelper
: Add support to configure batching in the sending queue. (#12746) -
exporterhelper
: Add support for wait_for_result, remove disabled_queue (#12742)
This has a side effect for users of the experimental BatchConfig with the queue disabled, since not this is | uses only NumCPU() consumers. -
exporterhelper
: Allow exporter memory queue to use different type of sizers. (#12708) -
service
: Add "telemetry.newPipelineTelemetry" feature gate to inject component-identifying attributes in internal telemetry (#12217)
With the feature gate enabled, all internal telemetry (metrics/traces/logs) will include some of
the following instrumentation scope attributes:otelcol.component.kind
otelcol.component.id
otelcol.pipeline.id
otelcol.signal
otelcol.signal.output
These attributes are defined in the Pipeline Component Telemetry RFC,
and identify the component instance from which the telemetry originates.
They are added automatically without changes to component code.These attributes were already included in internal logs as regular log attributes, starting from
v0.120.0. For consistency with other signals, they have been switched to scope attributes (with
the exception of logs emitted to standard output), and are now enabled by the feature gate.Please make sure that the exporter / backend endpoint you use has support for instrumentation
scope attributes before using this feature. If the internal telemetry is exported to another
Collector, a transform processor could be used to turn them into other kinds of attributes if
necessary. -
exporterhelper
: Enable support to do batching usingbytes
sizer (#12751) -
service
: Add config key to set metric views used for internal telemetry (#10769)
Theservice::telemetry::metrics::views
config key can now be used to explicitly set the list of
metric views used for internal telemetry, mirroringmeter_provider::views
in the SDK config.
This can be used to disable specific internal metrics, among other uses.This key will cause an error if used alongside other features which would normally implicitly create views, such as:
- not setting
service::telemetry::metrics::level
todetailed
; - enabling the
telemetry.disableHighCardinalityMetrics
feature flag.
- not setting
🧰 Bug fixes 🧰
exporterhelper
: Fix order of starting between queue and batch. (#12705)
API Changelog
🛑 Breaking changes 🛑
-
otlpreceiver/otlpexporter/otlphttpexporter
: Avoid using go embedded messages in Config (#12718) -
exporterqueue
: Move Queue interface to internal, disallow alternative implementations (#12680) -
extensionauth, configauth
: Remove deprecated types and functions fromextensionauth
andconfigauth
packages. (#12672)
This includes:extensionauth.NewClient
,extensionauth.ClientOption
and all its implementations,extensionauth.NewServer
,extensionauth.ServerOption
and all its implementations andconfigauth.Authenticator.GetClientAuthenticator
.
-
exporterhelper
: Remove deprecated converter types from exporterhelper (#12686) -
exporterbatch
: Remove deprecated fieldsmin_size_items
andmax_size_items
from batch config. (#12684)
🚩 Deprecations 🚩
exporterhelper
: Deprecate BatcherConfig, SizeConfig and WithBatcher in favor of the new QueueBatchConfig. (#12748)exporterbatcher
: Deprecated Config, SizeConfig, SizerType, SizerType[Requests|Items|Bytes], NewDefaultConfig. Use alias from exporterhelper. (#12707)exporterqueue
: Deprecated Config, NewDefaultConfig, Encoding, ErrQueueFull. Use alias from exporterhelper. (#12706)exporterhelper
: Deprecate exporterhelper WithRequestQueue in favor of WithQueueBatch (#12679)exporterhelper
: DeprecateQueueConfig
in favor ofQueueBatchConfig
. (#12746)