Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 13, 2026

Bumps github.com/open-telemetry/opentelemetry-collector-contrib/extension/healthcheckextension from 0.141.0 to 0.143.0.

Release notes

Sourced from github.com/open-telemetry/opentelemetry-collector-contrib/extension/healthcheckextension's releases.

v0.143.0

The OpenTelemetry Collector Contrib contains everything in the opentelemetry-collector release, be sure to check the release notes there as well.

Unmaintained Components

These components are marked as Unmaintained and will eventually be removed from our community distributions. If you depend on these components we need your help to support them.

  • exporter/alibabacloudlogservice
  • receiver/carbon

End User Changelog

🛑 Breaking changes 🛑

  • connector/servicegraph: remove deprecated warning log about metrics exporter logical (#45177)

  • extension/googlecloudlogentry_encoding: Parse Cloud DNS Query logs into log record attributes instead of placing it in the body as is. (#44561)

  • processor/tail_sampling: Add support for caching the policy name involved in a sampling decision. (#45040) This change allows the tailsampling.policy attribute to be set on the spans in a trace when a sampling decision is cached.

  • receiver/prometheus: Remove deprecated use_start_time_metric and start_time_metric_regex configuration options. (#44180) The use_start_time_metric and start_time_metric_regex configuration options have been removed after being deprecated in v0.142.0. Users who have these options set in their configuration will experience collector startup failures after upgrading. To migrate, remove these configuration options and use the metricstarttime processor instead for equivalent functionality.

  • receiver/systemd: Rename systemd.unit.cpu.time metric to systemd.service.cpu.time (#44916)

🚀 New components 🚀

  • cmd/schemagen: Introduce script that generates configuration schemas for collector components based on go structs. (#42214) The schemagen tool generates schemas for OpenTelemetry Collector components configuration by analyzing Go struct definitions. This is preliminary work to support automatic generation of documentation and validation for component configurations.

💡 Enhancements 💡

  • exporter/azureblob: Add time_parser_ranges option to allow selective time parsing of blob name substrings (#44650) The new time_parser_ranges configuration allows specifying index ranges (e.g., ["0-10", "15-25"]) to control which parts of the blob name are time-formatted.

  • exporter/coralogix: Exposed a new field to set grpc-accept-encoding. gzip will be used by default. (#45191)

  • exporter/coralogix: Improve log messages when a partial success happens for traces. (#44926) The exporter now provides additional context based on the type of partial success | returned by the backend. When the backend indicates issues with the sent data, the error | message is analyzed to identify and display examples of the problematic data.

  • exporter/elasticsearch: Add support for extra query parameters to the outgoing bulk request (#44480)

  • exporter/kafka: Make max_message_bytes and flush_max_messages unconditional in franz-go producer. Changed flush_max_messages default from 0 to 10000 to match franz-go default. (#44840)

  • extension/awslogs_encoding: Enhance VPC flow logs encoding extension with CloudWatch logs support (#44710)

  • extension/azure_encoding: Add processing for AppService, CDN, FrontDoor and Recommendation logs records (#41725)

  • extension/googlecloudlogentry_encoding: Add support for Passthrough External and Internal Network Load Balancer logs (#44524) Add support for Passthrough External and Internal Network Load Balancer logs to the Google Cloud log entry encoding extension. This includes adding support for the new gcp.load_balancing.passthrough_nlb attributes including connection details, bytes/packets sent and received, and RTT measurements.

  • pkg/ottl: Add Bool function for converting values to boolean (#44770)

... (truncated)

Changelog

Sourced from github.com/open-telemetry/opentelemetry-collector-contrib/extension/healthcheckextension's changelog.

v0.143.0

🛑 Breaking changes 🛑

  • all: Delete the package pkg/translator/opencensus (#45083) The opencensus translator is no longer used by the project. It was previously deprecated, and is now deleted.

  • exporter/sapm: Deprecate the SAPM exporter code ahead of its removal. (#45062) This exporter has been deprecated since 2024-12-19. Please use the OTLP exporter instead. With this change, the Go module is declared deprecated.

  • pkg/ottl: Make BoolExpr to be private to allow extending and implementing literals support. (#44954, #45096) Improve BoolExpr evaluation by evaluating literals at compile time.

  • pkg/ottl: Remove deprecated NewTransformContext funcs (#45043)

  • processor/tail_sampling: Add support for caching the policy name involved in a sampling decision. (#45040) This change allows the tailsampling.policy attribute to be set on the spans in a trace when a sampling decision is cached.

🚩 Deprecations 🚩

  • pkg/stanza: Deprecate stanza/errors Wrap function in favor of standard fmt.Errorf (#44949)

🚀 New components 🚀

  • pkg/translator/splunk: Introduce package for translating OTel to HEC format (#45011)

💡 Enhancements 💡

  • receiver/awscloudwatch: Add support for filtering log groups by account ID. (#38391)

v0.142.0

🛑 Breaking changes 🛑

  • all: 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. (#44320)
  • pkg/pdatatest: apply recent breaking changes to pprofiletest (#44758)

🚩 Deprecations 🚩

  • pkg/ottl: Use pointer when passing TransformContext around or calling into. (#44541) Change Expr/Parser/Getter/Setter and all ottl related funcs to accept pointers to avoid unnecessary copy of a large TransformContext(96B). Avoid allocating a new pcommon.Map every time a new context is created by using a Borrow/Return pattern and reuse objects between calls. Deprecated funcs are:
    • ottldatapoint.NewTransformContext in favor of ottldatapoint.NewTransformContextPtr;
    • ottllog.NewTransformContext in favor of ottllog.NewTransformContextPtr;
    • ottlmetric.NewTransformContext in favor of ottlmetric.NewTransformContextPtr;
    • ottlspan.NewTransformContext in favor of ottlspan.NewTransformContextPtr;

... (truncated)

Commits
  • 91039fd [chore] Prepare release 0.143.0 (#45232)
  • 4d8194e [chore] Update core dependencies (#45229)
  • 0ce888b [receiver/kafka] Fix deprecated field migration logic for metrics, traces, an...
  • 99a630b fix(deps): update module github.com/coreos/go-oidc/v3 to v3.17.0 (#45208)
  • 4ca28d5 [chore][receiver/awscloudwatch] Fix linting (#45224)
  • bd5c848 [chore] Fix typo in migration example for match_once (#45175)
  • d2de9c9 [receiver/awscloudwatch] Support filtering log groups by account ID (#44468)
  • ba45c22 [chore] Add repository check to tidy-dependencies workflow (#45219)
  • d5eaa17 [chore] Update core dependencies (#45209)
  • c043b5d [connector/servicegraph] remove deprecated warning log about metrics exporter...
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

…ion/healthcheckextension

Bumps [github.com/open-telemetry/opentelemetry-collector-contrib/extension/healthcheckextension](https://github.com/open-telemetry/opentelemetry-collector-contrib) from 0.141.0 to 0.143.0.
- [Release notes](https://github.com/open-telemetry/opentelemetry-collector-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/CHANGELOG-API.md)
- [Commits](open-telemetry/opentelemetry-collector-contrib@v0.141.0...v0.143.0)

---
updated-dependencies:
- dependency-name: github.com/open-telemetry/opentelemetry-collector-contrib/extension/healthcheckextension
  dependency-version: 0.143.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies go Pull requests that update Go code labels Jan 13, 2026
@dependabot dependabot bot requested a review from a team as a code owner January 13, 2026 00:49
@dependabot dependabot bot added dependencies go Pull requests that update Go code labels Jan 13, 2026
@github-actions
Copy link
Contributor

Dependency Review

The following issues were found:

  • ✅ 0 vulnerable package(s)
  • ❌ 1 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ⚠️ 1 package(s) with unknown licenses.

View full job summary

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants