Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all otel collector contrib packages to v0.115.0 - autoclosed #6306

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Dec 4, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector v0.114.0 -> v0.115.0 age adoption passing confidence
github.com/open-telemetry/opentelemetry-collector-contrib/exporter/kafkaexporter v0.114.0 -> v0.115.0 age adoption passing confidence
github.com/open-telemetry/opentelemetry-collector-contrib/exporter/prometheusexporter v0.114.0 -> v0.115.0 age adoption passing confidence
github.com/open-telemetry/opentelemetry-collector-contrib/extension/healthcheckv2extension v0.114.0 -> v0.115.0 age adoption passing confidence
github.com/open-telemetry/opentelemetry-collector-contrib/extension/storage v0.114.0 -> v0.115.0 age adoption passing confidence
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.114.0 -> v0.115.0 age adoption passing confidence
github.com/open-telemetry/opentelemetry-collector-contrib/processor/attributesprocessor v0.114.0 -> v0.115.0 age adoption passing confidence
github.com/open-telemetry/opentelemetry-collector-contrib/processor/tailsamplingprocessor v0.114.0 -> v0.115.0 age adoption passing confidence
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/jaegerreceiver v0.114.0 -> v0.115.0 age adoption passing confidence
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/kafkareceiver v0.114.0 -> v0.115.0 age adoption passing confidence
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/zipkinreceiver v0.114.0 -> v0.115.0 age adoption passing confidence

Release Notes

open-telemetry/opentelemetry-collector-contrib (github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector)

v0.115.0

Compare Source

🛑 Breaking changes 🛑
  • awsfirehosereceiver: Follow receiver contract based on type of error (#​5909)

  • elasticsearchexporter: Respect flush::bytes in sync bulk indexer, flush::bytes measures uncompressed size, change default batcher::max_size_items to 0 (#​36163)
    Limit the bulk request size to roughly flush::bytes for sync bulk indexer. Sync bulk indexer is used when batcher::enabled is either true or false. In order words, sync bulk indexer is not used when batcher config is undefined. Change flush::bytes to always measure in uncompressed bytes. Change default batcher::max_size_items to 0 as bulk request size limit is now more effectively enforced by flush::bytes.

  • k8sattributesprocessor: Move k8sattr.fieldExtractConfigRegex.disallow feature gate to Beta. (#​25128)
    Disable the k8sattr.fieldExtractConfigRegex.disallow feature gate to get the old behavior.

  • internal: Remove stable gate component.UseLocalHostAsDefaultHost (#​36589)

  • cmd/opampsupervisor: Update default logger output paths to stderr (#​36072)
    The default output paths for the opamp supervisor logger have been updated to stderr from [stdout, stderr].

  • opampsupervisor: Enable strict unmarshalling of the OpAMP Supervisor config file. An error will now be returned if an invalid config key is set. (#​35838)

🚩 Deprecations 🚩
  • postgresqlreceiver: Minimal supported PostgreSQL version updated from 9.6 to 13.0 (#​30923)
    Aligning on the supported versions as can be seen in the PostgreSQL releases section
  • exporter/prometheusremotewrite: Change exporter.prometheusremotewriteexporter.deprecateCreatedMetric feature gate from Alpha to Beta version. (#​35003)
    The export_created_metric configuration parameter is now ignored by default.
🚀 New components 🚀
  • signaltometricsconnector: New component for generating metrics from raw signals using user defined OTTL expressions. (#​35930)
  • extension/cgroupruntime: Initial implementation for cgroupruntime extension. (#​30289)
  • huaweicloudcesreceiver: Introduce new receiver fetching data from huawei Cloud Eye Service. (#​34953)
  • netflowreceiver: Introduce the netflow receiver (#​32732)
💡 Enhancements 💡
  • datadogexporter: Add a configurable reporter_period parameter to the Datadog exporter’s host metadata configuration to allow users to specify the frequency at which host metadata is sent to Datadog. (#​36450)

  • awsemfexporter: Add support for 1 second metric resolution in CloudWatch Embedded Metrics Format based on metric attributes (#​29506)

  • awsemfexporter: Improvement unit conversion during EMF log translation (#​35937)

  • sumologicexporter: adding new products for auto discovery (#​35622)

  • postgresqlreceiver: Added new postgresql metrics to acheive parity with Telegraf (#​36528)

  • loadbalancingexporter: Adding sending_queue, retry_on_failure and timeout settings to loadbalancing exporter configuration (#​35378, #​16826)
    When switching to top-level sending_queue configuration - users should carefully review queue size
    In some rare cases setting top-level queue size to n*queueSize might be not enough to prevent data loss

  • pkg/stanza: Introduce active file grouping mechanism. (#​23787)

  • receivercreator: Add support for starting receivers/scrapers based on provided annotations' hints for metrics' collection (#​34427)

  • tailsamplingprocessor: Adds decision cache for non-sampled trace IDs (#​31583)

  • cmd/opampsupervisor: Support environment variable expansion in the OpAMP supervisor config. (#​36269)

  • pkg/ottl: Move debug log to Statement.Execute so that components using it instead of StatementSequence also get debug logs. (#​36456)

  • routingconnector: Add abiilty to route by 'datapoint' context (#​36523)

  • signalfxreceiver: Follow receiver contract based on type of error (#​5909)
    Use 503 error code for retryable and 400 error code for not-retryable errors instead of responding with a 500 unconditionally.

🧰 Bug fixes 🧰
  • cmd/opampsupervisor: Do not log err if the last received doesn't exist (#​36013)

  • receiver/azureeventhub: When using a storage extension, the component will call Close on the client during component shutdown. This fixes a bug that resulted in a file potentially remaining locked after component shutdown. (#​36238)

  • azuremonitorexporter: Fixes an issue where the Azure Monitor exporter was not sending data to App Insights due to the Telemetry Channel not being flushed. (#​35037)

  • exporter/pulsarexporter: Change configuration option map_connections_per_broker, rename to max_connections_per_broker. (#​36579)

  • failoverconnector: Resolves a bug that prevents proper recovery when disabling max retries (#​36587)

  • googlecloudpubsubexporter: Fix a goroutine leak during shutdown. (#​30438)
    A goroutine leak was found in the googlecloudpubsubexporter.
    The goroutine leak was caused by the exporter not closing the underlying created gRPC client when using an insecure custom endpoint.

  • processor/k8sattribute: fixes parsing of k8s image names to support images with tags and digests. (#​36131)

  • clickhouseexporter: Fix incorrect Resource Attribute service.name translation to ClickHouse ServiceName field for Logs Records (#​36349)

  • awsfirehosereceiver: fix timestamp when ingesting logs from CloudWatch through firehose (#​36122)

  • pkg/ottl: Allow indexing []int64, []float64, []bool, and []byte slices (#​29441)
    It should now be possible to index all slice types

  • opencensusreceiver: Do not report error message when OpenCensus receiver is shutdown cleanly. (#​36622)

  • loadbalancingexporter: The k8sresolver in loadbalancingexporter was triggering exporter churn in the way the change event was handled. (#​35658)

  • vcenterreceiver: The existing code did not honor TLS settings beyond 'insecure'. All TLS client config should now be honored. (#​36482)


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 these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate-bot renovate-bot requested a review from a team as a code owner December 4, 2024 15:24
@forking-renovate forking-renovate bot added the changelog:dependencies Update to dependencies label Dec 4, 2024
Copy link

forking-renovate bot commented Dec 4, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 15 additional dependencies were updated

Details:

Package Change
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/status v0.114.0 -> v0.115.0
github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.114.0 -> v0.115.0
github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.114.0 -> v0.115.0
github.com/open-telemetry/opentelemetry-collector-contrib/internal/filter v0.114.0 -> v0.115.0
github.com/open-telemetry/opentelemetry-collector-contrib/internal/kafka v0.114.0 -> v0.115.0
github.com/open-telemetry/opentelemetry-collector-contrib/internal/pdatautil v0.114.0 -> v0.115.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/batchpersignal v0.114.0 -> v0.115.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/kafka/topic v0.114.0 -> v0.115.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl v0.114.0 -> v0.115.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.114.0 -> v0.115.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/resourcetotelemetry v0.114.0 -> v0.115.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/azure v0.114.0 -> v0.115.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/prometheus v0.114.0 -> v0.115.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin v0.114.0 -> v0.115.0
github.com/relvacode/iso8601 v1.5.0 -> v1.6.0

@renovate-bot renovate-bot force-pushed the renovate/all-otel-collector-contrib-packages branch from efc4f7e to ee1cf8c Compare December 4, 2024 17:11
Copy link

codecov bot commented Dec 4, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 96.23%. Comparing base (aca2976) to head (ee1cf8c).
Report is 2 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #6306   +/-   ##
=======================================
  Coverage   96.23%   96.23%           
=======================================
  Files         356      356           
  Lines       20432    20432           
=======================================
  Hits        19662    19662           
  Misses        583      583           
  Partials      187      187           
Flag Coverage Δ
badger_v1 8.90% <ø> (ø)
badger_v2 1.62% <ø> (ø)
cassandra-4.x-v1-manual 14.84% <ø> (ø)
cassandra-4.x-v2-auto 1.56% <ø> (ø)
cassandra-4.x-v2-manual 1.56% <ø> (ø)
cassandra-5.x-v1-manual 14.84% <ø> (ø)
cassandra-5.x-v2-auto 1.56% <ø> (ø)
cassandra-5.x-v2-manual 1.56% <ø> (ø)
elasticsearch-6.x-v1 18.59% <ø> (ø)
elasticsearch-7.x-v1 18.68% <ø> (ø)
elasticsearch-8.x-v1 18.84% <ø> (ø)
elasticsearch-8.x-v2 1.61% <ø> (-0.01%) ⬇️
grpc_v1 10.36% <ø> (ø)
grpc_v2 7.87% <ø> (ø)
kafka-v1 8.58% <ø> (ø)
kafka-v2 1.62% <ø> (ø)
memory_v2 1.62% <ø> (+<0.01%) ⬆️
opensearch-1.x-v1 18.72% <ø> (-0.01%) ⬇️
opensearch-2.x-v1 18.72% <ø> (-0.01%) ⬇️
opensearch-2.x-v2 1.62% <ø> (+<0.01%) ⬆️
tailsampling-processor 0.45% <ø> (ø)
unittests 95.13% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate-bot renovate-bot changed the title fix(deps): update all otel collector contrib packages to v0.115.0 fix(deps): update all otel collector contrib packages to v0.115.0 - autoclosed Dec 4, 2024
@renovate-bot renovate-bot deleted the renovate/all-otel-collector-contrib-packages branch December 4, 2024 17:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant