chore(deps): update module go.opentelemetry.io/collector/processor/processortest to v0.147.0 #38
Reference in New Issue
Block a user
Delete Branch "renovate/go.opentelemetry.io-collector-processor-processortest-0.x"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
v0.144.0→v0.147.0Release Notes
open-telemetry/opentelemetry-collector (go.opentelemetry.io/collector/processor/processortest)
v0.147.0Compare Source
💡 Enhancements 💡
exporter/debug: Output bucket counts for exponential histogram data points in normal verbosity. (#10463)pkg/exporterhelper: Addmetadata_keysconfiguration tosending_queue.batch.partitionto partition batches by client metadata (#14139)The
metadata_keysconfiguration option is now available in thesending_queue.batch.partitionsection for all exporters.When specified, batches are partitioned based on the values of the listed metadata keys, allowing separate batching per metadata partition. This feature
is automatically configured when using
exporterhelper.WithQueue().🧰 Bug fixes 🧰
cmd/builder: Fix duplicate error output when CLI command execution fails in the builder tool. (#14436)cmd/mdatagen: Fix duplicate error output when CLI command execution fails in the mdatagen tool. (#14436)cmd/mdatagen: Fix semconv URL validation for metrics with underscores in their names (#14583)Metrics like
system.disk.io_timenow correctly validate against semantic convention URLs containing underscores in the anchor tag.extension/memory_limiter: Use ChainUnaryInterceptor instead of UnaryInterceptor to allow multiple interceptors. (#14634)If multiple extensions that use the UnaryInterceptor are set the binary panics at start time.
extension/memory_limiter: Add support for streaming services. (#14634)pkg/config/configmiddleware: Add context.Context to HTTP middleware interface constructors. (#14523)This is a breaking API change for components that implement or use extensionmiddleware.
pkg/confmap: Fix another issue where configs could fail to decode when using interpolated values in string fields. (#14034)For example, a resource attribute can be set via an environment variable to a string that is parseable as a number, e.g.
1234.(A similar bug was fixed in a previous release: that one was triggered when the field was nested in a struct,
whereas this one is triggered when the field internally has type "pointer to string" rather than "string".)
pkg/otelcol: The featuregate subcommand now rejects extra positional arguments instead of silently ignoring them. (#14554)pkg/queuebatch: Fix data race in partition_batcher where resetTimer() was called outside mutex, causing concurrent timer.Reset() calls and unpredictable batch flush timing under load. (#14491)pkg/scraperhelper: Log scrapers now emit log-appropriate receiver telemetry (#14654)Log scrapers previously emitted the same receiver telemetry as metric scrapers,
such as the otelcol_receiver_accepted_metric_points metric (instead of otelcol_receiver_accepted_log_records),
or spans named receiver/myreceiver/MetricsReceived (instead of receiver/myreceiver/LogsReceived).
This did not affect scraper-specific spans and metrics.
processor/batch: Fixes a bug where the batch processor would not copySchemaUrlmetadata from resource and scope containers during partial batch splits. (#12279, #14620)v0.146.1Compare Source
v0.146.0Compare Source
🛑 Breaking changes 🛑
all: Increase minimum Go version to 1.25 (#14567)🚩 Deprecations 🚩
pdata/pprofile: Declare removed aggregation elements as deprecated. (#14528)💡 Enhancements 💡
all: Add detailed failure attributes to exporter send_failed metrics at detailed telemetry level. (#13956)The
otelcol_exporter_send_failed_{spans,metric_points,log_records}metrics now includefailure attributes when telemetry level is Detailed:
error.type(OpenTelemetry semantic conventiondescribing the error class) and
error.permanent(indicates if error is permanent/non-retryable).The
error.typeattribute captures gRPC status codes (e.g., "Unavailable", "ResourceExhausted"),standard Go context errors (e.g., "canceled", "deadline_exceeded"),
and collector-specific errors (e.g., "shutdown").
This enables better alerting and debugging by providing standardized error classification.
cmd/builder: Introduce new experimentalinitsubcommand (#14530)The new
initsubcommand initializes a new custom collectorcmd/builder: Add "telemetry" field to allow configuring telemetry providers (#14575)Most users should not need to use this, this field should only be set if you
intend to provide your own OpenTelemetry SDK.
cmd/mdatagen: Introduce additional metadata (the version since the deprecation started, and the deprecation reason) for deprecated metrics. (#14113)cmd/mdatagen: Add optionalrelationshipsfield to entity schema in metadata.yaml (#14284)exporter/debug: Addoutput_pathsconfiguration option to control output destination whenuse_internal_loggeris false. (#10472)When
use_internal_loggeris set tofalse, the debug exporter now supports configuring the output destination via theoutput_pathsoption.This allows users to send debug exporter output to
stdout,stderr, or a file path.The default value is
["stdout"]to maintain backward compatibility.pkg/confmap: Add experimentalToStringMapRawfunction to decodeconfmap.Confinto a string map without losing internal types (#14480)This method exposes the internal structure of a
confmap.Confwhich may change at any time without prior notice🧰 Bug fixes 🧰
cmd/mdatagen: Reset aggDataPoints during metric init to avoid index out of range panic across emit cycles when reaggregation is enabled. (#14569)cmd/mdatagen: Fix panic when mdatagen is run without arguments. (#14506)pdata/pprofile: Fix off-by-one issue in dictionary lookups. (#14534)pkg/config/confighttp: Fix high cardinality span name from request method from confighttp server internal telemetry (#14516)Follow spec to bound request method cardinality.
pkg/otelcol: Ignore component aliases in theotelcol componentscommand (#14492)pkg/otelcol: Order providers and converters in alphabetical order in thecomponentssubcommand. (#14476)v0.145.0Compare Source
💡 Enhancements 💡
pkg/scraperhelper: ScraperID has been added to the logs for metrics, logs, and profiles (#14461)🧰 Bug fixes 🧰
exporter/otlp_grpc: Fix the OTLP exporter balancer to use round_robin by default, as intended. (#14090)pkg/config/configoptional: FixUnmarshalmethods not being called when config is wrapped insideOptional(#14500)This bug notably manifested in the fact that the
sending_queue::batch::sizerconfig for exportersstopped defaulting to
sending_queue::sizer, which sometimes caused the wrong units to be usedwhen configuring
sending_queue::batch::min_sizeandmax_size.As part of the fix,
xconfmapexposes a newxconfmap.WithForceUnmarshaleroption, to be used in theUnmarshalmethodsof wrapper types like
configoptional.Optionalto make sure theUnmarshalmethod of the inner type is called.The default behavior remains that calling
conf.Unmarshalon theconfmap.Confpassed as argument to anUnmarshalmethod will skip any top-level
Unmarshalmethods to avoid infinite recursion in standard use cases.pkg/confmap: Fix an issue where configs could fail to decode when using interpolated values in string fields. (#14413)For example, a header can be set via an environment variable to a string that is parseable as a number, e.g.
1234pkg/service: Don't error on startup when process metrics are enabled on unsupported OSes (e.g. AIX) (#14307)Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.
ℹ️ Artifact update notice
File name: go.mod
In order to perform the update(s) described in the table above, Renovate ran the
go getcommand, which resulted in the following additional change(s):godirective was updated for compatibility reasonsDetails:
go1.24.2->1.25.0go.opentelemetry.io/collector/component/componentstatusv0.144.0->v0.147.0go.opentelemetry.io/collector/consumer/xconsumerv0.144.0->v0.147.0go.opentelemetry.io/collector/featuregatev1.50.0->v1.53.0go.opentelemetry.io/collector/internal/componentaliasv0.144.0->v0.147.0go.opentelemetry.io/collector/pdata/pprofilev0.144.0->v0.147.0go.opentelemetry.io/collector/pdata/testdatav0.144.0->v0.147.0go.opentelemetry.io/collector/pipelinev1.50.0->v1.53.0go.opentelemetry.io/collector/processor/xprocessorv0.144.0->v0.147.0go.opentelemetry.io/otelv1.39.0->v1.40.0go.opentelemetry.io/otel/metricv1.39.0->v1.40.0go.opentelemetry.io/otel/sdkv1.39.0->v1.40.0go.opentelemetry.io/otel/sdk/metricv1.39.0->v1.40.0go.opentelemetry.io/otel/tracev1.39.0->v1.40.0golang.org/x/netv0.47.0->v0.51.0golang.org/x/sysv0.39.0->v0.41.0golang.org/x/textv0.31.0->v0.34.0google.golang.org/grpcv1.78.0->v1.79.1go.opentelemetry.io/collector/componentv1.50.0->v1.53.0go.opentelemetry.io/collector/component/componenttestv0.144.0->v0.147.0go.opentelemetry.io/collector/consumerv1.50.0->v1.53.0go.opentelemetry.io/collector/consumer/consumertestv0.144.0->v0.147.0go.opentelemetry.io/collector/pdatav1.50.0->v1.53.0go.opentelemetry.io/collector/processorv1.50.0->v1.53.0chore(deps): update module go.opentelemetry.io/collector/processor/processortest to v0.145.0to chore(deps): update module go.opentelemetry.io/collector/processor/processortest to v0.146.12e567fed7cto8f3efe3c10chore(deps): update module go.opentelemetry.io/collector/processor/processortest to v0.146.1to chore(deps): update module go.opentelemetry.io/collector/processor/processortest to v0.147.08f3efe3c10to42addad6eb