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.109.0 #5968

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Sep 10, 2024

This PR contains the following updates:

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

Release Notes

open-telemetry/opentelemetry-collector-contrib (github.com/open-telemetry/opentelemetry-collector-contrib/exporter/kafkaexporter)

v0.109.0

Compare Source

🛑 Breaking changes 🛑
  • clickhouseexporter: Upgrade trace SpanKind and StatusCode string values (#​34799)
    This change updates the output of the trace SpanKind and StatusCode fields to be consistent
    with the specification's enum values. While this change will not break any deployments, it may affect
    queries dependent on the old enum names.

    For more details on old->new values, see this related PR:
    https://github.com/open-telemetry/opentelemetry-collector/pull/62506250

  • spanmetricsconnector: Improve consistency between metrics generated by spanmetricsconnector. Added traces.span.metrics as default namespace (#​33227, #​32818)
    Default namespace for the generated metrics is traces.span.metrics now. | The deprecated metrics are: calls, duration and events. | The feature flag connector.spanmetrics.legacyLatencyMetricNames was added to revert the behavior.

  • servicegraphconnector: Fix histogram metrics miss unit (#​34511)
    All metrics will remove the suffix _seconds. It will not introduce breaking change if users use | prometheusexporter or prometheusremotewriteexporter to exporter metrics in pipeline. | In some cases, like using clickhouseexporter(save data in native OTLP format), it will be a breaking change. | Users can use transformprocessor to add back this suffix.

  • gitproviderreceiver: The Git Provider Receiver has been renamed to GitHub Receiver. (#​34731)
    This rename was to better match the OpenTelemetry semantic convention changes in v1.27.0
    and allows for Traces and Log signals to be added to this component. Traces
    as mentioned in issue #​27460 will be added in a future release to this component.

  • ottl: Remove tracing from OTTL due to performance concerns (#​34910)

  • vcenterreceiver: Updated units on several metrics to be more in line with documented semantics. (#​34946)
    The following are the metrics with their respective unit changes:

    • vcenter.datacenter.cpu.limit ({MHz} -> MHz)
    • vcenter.cluster.cpu.limit ({MHz} -> MHz)
    • vcenter.cluster.cpu.effective ({MHz} -> MHz)
    • vcenter.cluster.vsan.operations ({operations/sec} -> {operations/s})
    • vcenter.cluster.vsan.congestions ({congestions/sec} -> {congestions/s})
    • vcenter.host.network.packet.error.rate ({errors/sec} -> {errors/s})
    • vcenter.host.network.packet.rate ({packets/sec} -> {packets/s})
    • vcenter.host.network.packet.drop.rate ({packets/sec} -> {packets/s})
    • vcenter.host.vsan.operations ({operations/sec} -> {operations/s})
    • vcenter.host.vsan.congestions ({congestions/sec} -> {congestions/s})
    • vcenter.resource_pool.cpu.usage ({MHz} -> MHz)
    • vcenter.vm.network.throughput (By/sec -> By/s)
    • vcenter.vm.network.packet.rate ({packets/sec} -> {packets/s})
    • vcenter.vm.vsan.operations ({operations/sec} -> {operations/s})
🚩 Deprecations 🚩
  • instanaexporter: Marking instanaexporter module as deprecated (#​34994)
💡 Enhancements 💡
  • pkg/ottl: Added Decode() converter function (#​32493)

  • testbed: Add test case scenarios to handle large files to existing testbed. (#​34288)

  • filestorage: Add directory validation for compaction on-rebound (#​35114)

  • windowseventlogreceiver: Avoid rendering the whole event to obtain the provider name (#​34755)

  • datadogreceiver: add support for sketch metrics in Datadog receiver (#​18278)

  • datadogconnector: Optimize Datadog connector when there are many peer tags and connector.datadogconnector.NativeIngest is enabled (#​34945)
    connector.datadogconnector.NativeIngest is currently enabled by default

  • splunkhecexporter: Drop empty log events (#​34871)
    Log records with no body are dropped by Splunk on reception
    as they contain no log message, albeit they may have attributes.

    This PR removes those logs from consideration to be exported.

    This is in tune with the behavior of splunkhecreceiver, which refuses HEC events with no event (#​19769)

  • elasticsearchexporter: Add exponential histogram support (#​34813)

  • elasticsearchexporter: Add span event support to traces OTel mapping mode (#​34831)
    Span events are now supported in OTel mapping mode. They will be routed to logs-${data_stream.dataset}-${data_stream.namespace} if traces_dynamic_index::enabled is true.

  • transformprocessor: Support aggregating metrics based on their attribute values and substituting the values with a new value. (#​16224)

  • kafkareceiver: Adds tunable fetch sizes to Kafka Receiver (#​22741, #​34431)
    Adds the ability to tune the minumum, default and maximum fetch sizes for the Kafka Receiver

  • solarwindsapmsettingsextension: Added logic for refresh function (#​27668)

  • githubreceiver: Promote GitHub receiver metrics to alpha status. (#​34960)

  • googlecloudmonitoringreceiver: Enhancing the Google Cloud monitoring receiver to establish a client connection, scrape GCP Cloud Metrics, and transform them into an OpenTelemetry compatible format for pipeline processing. (#​33762)

    • Implements client connection to Google Cloud Monitoring API.
    • Scrapes timeseries data based on configured metrics.
    • Converts the data into OpenTelemetry format for use in the pipeline.
  • processor/interval: Support for gauge and summary metrics. (#​34803)
    Only the last value of a gauge or summary metric is reported in the interval processor, instead of all values.

  • kafkareceiver: Add support for encoding extensions in the Kafka receiver. (#​33888)
    This change adds support for encoding extensions in the Kafka receiver. Loading extensions takes precedence over the internally supported encodings.

  • datadogexporter: Add support for setting a custom log source from resource attribute datadog.log.source (#​35051)

  • opampextension: Adds the ability to configure the polling interval for the HTTP client. (#​34749)

  • otelarrowexporter: Add gRPC timeout propagation. (#​34733)

  • pkg/ottl: Add Sort function to sort array to ascending order or descending order (#​34200)

  • exporter/prometheusexpoter: Support for Prometheus Created Timestamps. (#​32521)

  • redactionprocessor: Add support for logs and metrics (#​34479)

  • exceptionsconnector,servicegraphconnector,spanmetricsconnector: Extract the getDimensionValue function as a common function. (#​34627)

  • sqlqueryreceiver: Support populating log attributes from sql query (#​24459)

  • opampsupervisor: Add new config parameter agent.health_check_port to allow configuring the port used by the agent healthcheck extension. (#​34643)

🧰 Bug fixes 🧰
  • apachereceiver: Fix panic on invalid endpoint configuration (#​34992)

  • deltatocumulative: drop bad samples (#​34979)
    removes bad (rejected) samples from output. previously identified and metric-tracked those as such, but didn't actually drop them.

  • elasticsearchexporter: Fix dynamic mapping for double values storing integers (#​34680)

  • elasticsearchexporter: Stringify attribute array values in metrics OTel mode (#​35004)
    Elasticsearch TSDB does not support array dimensions. Workaround it by stringifying attribute array values in OTel mapping mode for metrics.

  • fileconsumer: Fix bug where max_concurrent_files could not be set to 1. (#​35080)

  • servicegraphconnector: Fix incorrectly reversed latency settings for the server and client (#​34933)

  • hostmetricsreceiver: In filesystem scraper, do not prefix partitions when using the environment variable HOST_PROC_MOUNTINFO (#​35043)

  • splunkhecreceiver: Fix memory leak when the receiver is used for both metrics and logs at the same time (#​34886)

  • geoipprocessor: Avoid using internal empty attribute.Set pointer (#​34882)

  • pkg/stanza: Synchronize shutdown in stanza adapter (#​31074)
    Stanza-based receivers should now flush all data before shutting down

  • sqlserverreceiver: Fix bug where metrics were being emitted with the wrong database name resource attribute (#​35036)

  • signalfxexporter: Fix memory leak by re-organizing the exporter's functionality lifecycle (#​32781)

  • otlpjsonconnector: Handle OTLPJSON unmarshal error (#​34782)

  • mysqlreceiver: mysql client raise error when the TABLE_ROWS column is NULL, convert NULL to int64 (#​34195)

  • pkg/stanza: An operator configured with silent errors shouldn't log errors while processing log entries. (#​35008)

  • datadogexporter: Use correct hostname for logs when using Datadog Agent logs pipeline with a gateway deployment. (#​35058)


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 September 10, 2024 18:41
@forking-renovate forking-renovate bot added the changelog:dependencies Update to dependencies label Sep 10, 2024
Copy link

forking-renovate bot commented Sep 10, 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):

  • 9 additional dependencies were updated

Details:

Package Change
github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.108.0 -> v0.109.0
github.com/open-telemetry/opentelemetry-collector-contrib/internal/filter v0.108.0 -> v0.109.0
github.com/open-telemetry/opentelemetry-collector-contrib/internal/kafka v0.108.0 -> v0.109.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/batchpersignal v0.108.0 -> v0.109.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl v0.108.0 -> v0.109.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/resourcetotelemetry v0.108.0 -> v0.109.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/azure v0.108.0 -> v0.109.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/prometheus v0.108.0 -> v0.109.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin v0.108.0 -> v0.109.0

@dosubot dosubot bot added the area/otel label Sep 10, 2024
@renovate-bot renovate-bot force-pushed the renovate/all-otel-collector-contrib-packages branch 2 times, most recently from 0957d9a to 1964b2c Compare September 11, 2024 01:34
Copy link

codecov bot commented Sep 11, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 96.78%. Comparing base (6a96e18) to head (769fa0b).
Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #5968   +/-   ##
=======================================
  Coverage   96.78%   96.78%           
=======================================
  Files         348      348           
  Lines       16559    16559           
=======================================
  Hits        16027    16027           
  Misses        343      343           
  Partials      189      189           
Flag Coverage Δ
badger_v1 8.02% <ø> (ø)
badger_v2 1.82% <ø> (ø)
cassandra-4.x-v1 16.61% <ø> (ø)
cassandra-4.x-v2 1.75% <ø> (ø)
cassandra-5.x-v1 16.61% <ø> (ø)
cassandra-5.x-v2 1.75% <ø> (ø)
elasticsearch-6.x-v1 18.77% <ø> (-0.02%) ⬇️
elasticsearch-7.x-v1 18.84% <ø> (ø)
elasticsearch-8.x-v1 19.04% <ø> (ø)
elasticsearch-8.x-v2 ?
grpc_v1 9.52% <ø> (+0.01%) ⬆️
grpc_v2 7.15% <ø> (ø)
kafka-v1 9.74% <ø> (ø)
kafka-v2 1.82% <ø> (ø)
memory_v2 1.82% <ø> (+0.01%) ⬆️
opensearch-1.x-v1 18.88% <ø> (-0.02%) ⬇️
opensearch-2.x-v1 18.88% <ø> (-0.02%) ⬇️
opensearch-2.x-v2 1.82% <ø> (+0.01%) ⬆️
tailsampling-processor 0.46% <ø> (ø)
unittests 95.27% <ø> (ø)

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 force-pushed the renovate/all-otel-collector-contrib-packages branch from 1c2e14f to f2a3974 Compare September 11, 2024 19:44
@renovate-bot renovate-bot changed the title Update All OTEL Collector contrib packages to v0.109.0 fix(deps): update all otel collector contrib packages to v0.109.0 Sep 15, 2024
@renovate-bot renovate-bot force-pushed the renovate/all-otel-collector-contrib-packages branch from f2a3974 to f6d788d Compare September 17, 2024 12:50
Signed-off-by: Mend Renovate <bot@renovateapp.com>
@renovate-bot renovate-bot force-pushed the renovate/all-otel-collector-contrib-packages branch from f6d788d to 769fa0b Compare September 22, 2024 18:26
@yurishkuro yurishkuro merged commit b463a46 into jaegertracing:main Sep 22, 2024
48 of 49 checks passed
@renovate-bot renovate-bot deleted the renovate/all-otel-collector-contrib-packages branch September 22, 2024 18:36
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.

2 participants