chore(deps): update module go.opentelemetry.io/collector/exporter/otlpexporter to v0.146.1#47
Open
topicus-education-renovate-bot[bot] wants to merge 1 commit intomainfrom
Conversation
c7cf835 to
bf55ec9
Compare
bf55ec9 to
94a86a0
Compare
fa73046 to
a6bab6a
Compare
a6bab6a to
74b391f
Compare
919ac60 to
bd08ea5
Compare
bd08ea5 to
dc4caf8
Compare
f359c12 to
a895263
Compare
a895263 to
88e8953
Compare
8479037 to
9e2943b
Compare
9e2943b to
10b3ad2
Compare
d0e7717 to
9a93d75
Compare
9a93d75 to
35851a3
Compare
2eb5ca8 to
9c8ca47
Compare
9c8ca47 to
e2d9d97
Compare
…pexporter to v0.146.1
e2d9d97 to
0988da9
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v0.138.0→v0.146.1Release Notes
open-telemetry/opentelemetry-collector (go.opentelemetry.io/collector/exporter/otlpexporter)
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)v0.144.0Compare Source
🛑 Breaking changes 🛑
pkg/exporterhelper: Change verbosity level for otelcol_exporter_queue_batch_send_size metric to detailed. (#14278)pkg/service: Remove deprecatedtelemetry.disableHighCardinalityMetricsfeature gate. (#14373)pkg/service: Remove deprecatedservice.noopTracerProviderfeature gate. (#14374)🚩 Deprecations 🚩
exporter/otlp_grpc: Renameotlpexporter tootlp_grpcexporter and add deprecated aliasotlp. (#14403)exporter/otlp_http: Renameotlphttpexporter tootlp_httpexporter and add deprecated aliasotlphttp. (#14396)💡 Enhancements 💡
cmd/builder: Avoid duplicate CLI error logging in generated collector binaries by relying on cobra's error handling. (#14317)cmd/mdatagen: Add the ability to disable attributes at the metric level and re-aggregate data points based off of these new dimensions (#10726)cmd/mdatagen: Add optionaldisplay_nameanddescriptionfields to metadata.yaml for human-readable component names (#14114)The
display_namefield allows components to specify a human-readable name in metadata.yaml.When provided, this name is used as the title in generated README files.
The
descriptionfield allows components to include a brief description in generated README files.cmd/mdatagen: Validate stability level for entities (#14425)pkg/xexporterhelper: Reenable batching for profiles (#14313)receiver/nop: add profiles signal support (#14253)🧰 Bug fixes 🧰
pkg/exporterhelper: Fix reference count bug in partition batcher (#14444)v0.143.0Compare Source
💡 Enhancements 💡
all: Update semconv import to 1.38.0 (#14305)exporter/nop: Add profiles support to nop exporter (#14331)pkg/pdata: Optimize the size and pointer bytes for pdata structs (#14339)pkg/pdata: Avoid using interfaces/oneof like style for optional fields (#14333)v0.142.0Compare Source
💡 Enhancements 💡
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.
v0.141.0Compare Source
🛑 Breaking changes 🛑
pkg/config/confighttp: Use configoptional.Optional for confighttp.ClientConfig.Cookies field (#14021)💡 Enhancements 💡
pkg/config/confighttp: Settingcompression_algorithmsto an empty list now disables automatic decompression, ignoring Content-Encoding (#14131)pkg/service: Update semantic conventions from internal telemetry to v1.37.0 (#14232)pkg/xscraper: Implement xscraper for Profiles. (#13915)🧰 Bug fixes 🧰
pkg/config/configoptional: Ensure that configoptional.None values resulting from unmarshaling are equivalent to configoptional.Optional zero value. (#14218)v0.140.0Compare Source
💡 Enhancements 💡
cmd/mdatagen:metadata.yamlnow supports an optionalentitiessection to organize resource attributes into logical entities with identity and description attributes (#14051)When entities are defined, mdatagen generates
AssociateWith{EntityType}()methods on ResourceBuilderthat associate resources with entity types using the entity refs API. The entities section is backward
compatible - existing metadata.yaml files without entities continue to work as before.
cmd/mdatagen: Add semconv reference for metrics (#13920)connector/forward: Add support for Profiles to Profiles (#14092)exporter/debug: Disable sending queue by default (#14138)The recently added sending queue configuration in Debug exporter was enabled by default and had a problematic default size of 1.
This change disables the sending queue by default.
Users can enable and configure the sending queue if needed.
pkg/config/configoptional: Markconfigoptional.AddEnabledFieldas beta (#14021)pkg/otelcol: This feature has been improved and tested; secure-by-default redacts configopaque values (#12369)🧰 Bug fixes 🧰
all: Ensure service service.instance.id is the same for all the signals when it is autogenerated. (#14140)v0.139.0Compare Source
🛑 Breaking changes 🛑
cmd/mdatagen: Make stability.level a required field for metrics (#14070)cmd/mdatagen: Replaceoptionalfield withrequirement_levelfield for attributes in metadata schema (#13913)The
optionalboolean field for attributes has been replaced with arequirement_levelfield that accepts enum values:required,conditionally_required,recommended, oropt_in.required: attribute is always included and cannot be excludedconditionally_required: attribute is included by default when certain conditions are met (replacesoptional: true)recommended: attribute is included by default but can be disabled via configuration (replacesoptional: false)opt_in: attribute is not included unless explicitly enabled in user configWhen
requirement_levelis not specified, it defaults torecommended.pdata/pprofile: Remove deprecatedPutAttributehelper method (#14082)pdata/pprofile: Remove deprecatedPutLocationhelper method (#14082)💡 Enhancements 💡
all: Add FIPS and non-FIPS implementations for allowed TLS curves (#13990)cmd/builder: Set CGO_ENABLED=0 by default, add thecgo_enabledconfiguration to enable it. (#10028)pkg/config/configgrpc: Errors of type status.Status returned from an Authenticator extension are being propagated as is to the upstream client. (#14005)pkg/config/configoptional: Adds newconfigoptional.AddEnabledFieldfeature gate that allows users to explicitly disable aconfigoptional.Optionalthrough a newenabledfield. (#14021)pkg/exporterhelper: Replace usage of gogo proto for persistent queue metadata (#14079)pkg/pdata: Remove usage of gogo proto and generate the structs with pdatagen (#14078)🧰 Bug fixes 🧰
exporter/debug: add queue configuration (#14101)Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, 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.