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

Update All OTEL Collector contrib packages to v0.103.0 #5660

Conversation

renovate-bot
Copy link
Contributor

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/open-telemetry/opentelemetry-collector-contrib/connector/spanmetricsconnector v0.102.0 -> v0.103.0 age adoption passing confidence
github.com/open-telemetry/opentelemetry-collector-contrib/exporter/kafkaexporter v0.102.0 -> v0.103.0 age adoption passing confidence
github.com/open-telemetry/opentelemetry-collector-contrib/extension/storage v0.102.0 -> v0.103.0 age adoption passing confidence
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.102.0 -> v0.103.0 age adoption passing confidence
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/jaegerreceiver v0.102.0 -> v0.103.0 age adoption passing confidence
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/kafkareceiver v0.102.0 -> v0.103.0 age adoption passing confidence
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/zipkinreceiver v0.102.0 -> v0.103.0 age adoption passing confidence

Release Notes

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

v0.103.0

Compare Source

πŸ›‘ Breaking changes πŸ›‘
  • cmd/opampsupervisor,extension/opamp: Upgrade the opamp-go library to v0.15.0 (#​33416)
    With this change, UUIDv7 is recommended for the OpAMP extension's instance_uid field instead of ULID. ULIDs will continue to work, but may be displayed as UUIDs.
    The supervisor's persistent state (${storage_dir}/persistent_state.yaml) will need to be cleared to generate a new UUIDv7 instead of a ULID.
    This change may be incompatible with management servers using v0.14.0 of opamp-go.

  • mongodbreceiver: Now only supports TCP connections (#​32199)
    This fixes a bug where hosts had to explicitly set tcp as the transport type. The transport option has been removed.

  • cmd/configschema: Removes the deprecated configschema command. This command will no longer be released or supported. (#​33384)

  • sqlserverreceiver: sqlserver.database.io.read_latency has been renamed to sqlserver.database.latency with a direction attribute. (#​29865)

🚩 Deprecations 🚩
  • healthcheckextension: Remove incorrect logic behind check_collector_pipeline config (#​33469)
    This logic incorrectly set the pipeline to OK after waiting for enough callbacks from the
    opencensus library to be called. As this was broken, I'm removing it to remove the dependency
    on opencensus as well. Improvements will be available via healthcheckv2 extension.

  • googlecloudspannerreceiver: Mark the component as unmaintained. If we don't find new maintainers, it will be deprecated and removed. (#​32651)

πŸ’‘ Enhancements πŸ’‘
  • filelogreceiver: If include_file_record_number is true, it will add the file record number as the attribute log.file.record_number (#​33530)

  • kubeletstats: Add k8s.pod.cpu.node.utilization metric (#​33390)

  • awss3exporter: endpoint should contain the S3 bucket (#​32774)

  • awss3receiver: Add support for encoding extensions to be used in the AWS S3 Receiver. (#​30750)

  • gitproviderreceiver: Adds branch commit and line based metrics (#​22028)
    Adds the following branch based metrics.

    • git.repository.branch.time
    • git.repository.branch.commit.aheadby.count
    • git.repository.branch.commit.behindby.count
    • git.repository.branch.line.deletion.count
    • git.repository.branch.line.addition.count
  • statsdreceiver: update statsd receiver to use mdatagen (#​33524)

  • coralogixexporter: Allow setting application name from cx.application.name and cx.subsystem.name resource attributes (#​33217)

  • metricstransformprocessor: Adds the 'count' aggregation type to the Metrics Transform Processor. (#​24978)

  • elasticsearchexporter: Add support for confighttp options, notably "auth". (#​33367)
    Add support for confighttp and related configuration settings, such as "auth".
    This change also means that the Elasticsearch URL may be specified as "endpoint",
    like the otlphttp exporter.

  • elasticsearchexporter: Check that endpoints are valid URLs during config validation. (#​33350)
    Check that endpoints are valid URLs during config validation so that
    an invalid endpoint causes a fatal error during startup, rather than
    leading to a persistent runtime error.

  • opampsupervisor: Add config validation for the supervisor config (#​32843)

  • statsdreceiver: Added received/accepted/refused metrics (#​24278)

  • filelogreceiver: Add support for gzip compressed log files (#​2328)

  • confmap/provider/secretsmanagerprovider: Add support for JSON formatted secrets in secretsmanagerprovider confmap (#​32143)
    The secretsmanagerprovider confmap will now allow to get secret by a json key if the secret value is json.
    To specify key separate key from secret name/arn by # e.g. mySecret#mySecretKey.

  • geoipprocessor: Add initial processing based on source.address resource attribute (#​32663)

  • healthcheckv2extension: Add shared aggregation logic for status events. (#​26661)

  • tailsamplingprocessor: Simple LRU Decision Cache for "keep" decisions (#​31583)

  • processor/tailsampling: Migrates internal telemetry to OpenTelemetry SDK via mdatagen (#​31581)
    The metric names and their properties, such as bucket boundaries for histograms, were kept like before, to keep backwards compatibility.

  • kafka: Added disable_fast_negotiation configuration option for Kafka Kerberos authentication, allowing the disabling of PA-FX-FAST negotiation. (#​26345)

  • pkg/ottl: Added keep_matching_keys function to allow dropping all keys from a map that don't match the pattern. (#​32989)

  • OTel-Arrow: Update to OTel-Arrow v0.24.0 (#​26491)

  • pkg/ottl: Add debug logs to help troubleshoot OTTL statements/conditions (#​33274)

  • pkg/ottl: Introducing append function for appending items into an existing array (#​32141)

  • pkg/ottl: Introducing Uri converter parsing URI string into SemConv (#​32433)

  • probabilisticsamplerprocessor: Add Proportional and Equalizing sampling modes (#​31918)
    Both the existing hash_seed mode and the two new modes use OTEP 235 semantic conventions to encode sampling probability.

  • prometheusreceiver: Resource attributes produced by the prometheus receiver now include stable semantic conventions for server and url. (#​32814)
    To migrate from the legacy net.host.name, net.host.port, and http.scheme resource attributes, |
    migrate to server.address, server.port, and url.scheme, and then |
    set the receiver.prometheus.removeLegacyResourceAttributes feature gate.

  • datadogexporter: The Datadog Exporter now supports the proxy_url parameter to configure an HTTP proxy to use when sending telemetry to Datadog. (#​33316)

  • spanmetrics: Produce delta temporality span metrics with StartTimeUnixNano and TimeUnixNano values representing an uninterrupted series (#​31671, #​30688)
    This allows producing delta span metrics instead of the more memory-intensive cumulative metrics, specifically when a downstream component can convert the delta metrics to cumulative.

  • sqlserverreceiver: Add support for more Database IO metrics (#​29865)
    The following metrics have been added:

    • sqlserver.database.latency
    • sqlserver.database.io
    • sqlserver.database.operations
  • cmd/opampsupervisor: Receive and report effective config to the OpAMP server (#​30622)

  • processor/transform: Add transform.flatten.logs featuregate to give each log record a distinct resource and scope. (#​32080)
    This option is useful when applying transformations which alter the resource or scope. e.g. set(resource.attributes["to"], attributes["from"]), which may otherwise result in unexpected behavior. Using this option typically incurs a performance penalty as the processor must compute many hashes and create copies of resource and scope information for every log record.

  • receiver/windowsperfcounters: Counter configuration now supports recreating the underlying performance query at scrape time. (#​32798)

🧰 Bug fixes 🧰
  • filelogreceiver: Container parser should add k8s metadata as resource attributes and not as log record attributes (#​33341)
  • deltatocumulative: properly drop samples when at limit (#​33285)
    fixes a segfault in the limiting behavior, where streams exceeding the limit still had their samples processed. due to not being tracked, this led to a nil-pointer deref
  • postgresqlreceiver: Fix bug where postgresql.rows always returning 0 for state="dead" (#​33489)
  • prometheusreceiver: Fall back to scrape config job/instance labels for aggregated metrics without instance/job labels (#​32555)
  • elasticsearchexporter: Duplicate Key in JSON (#​33454)
  • logzioexporter: Fix issue where log attributes were not correctly exported (#​33231)
  • exporter/datadog: Prevents collector shut down when Datadog logs pipeline fails to validate API key (#​33195)

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 has been generated by Mend Renovate. View repository job log here.

Signed-off-by: Mend Renovate <bot@renovateapp.com>
@renovate-bot renovate-bot requested a review from a team as a code owner June 19, 2024 14:57
@forking-renovate forking-renovate bot added the changelog:dependencies Update to dependencies label Jun 19, 2024
Copy link

β„Ή 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):

  • 7 additional dependencies were updated

Details:

Package Change
github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.102.0 -> v0.103.0
github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.102.0 -> v0.103.0
github.com/open-telemetry/opentelemetry-collector-contrib/internal/kafka v0.102.0 -> v0.103.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/batchpersignal v0.102.0 -> v0.103.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.102.0 -> v0.103.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/azure v0.102.0 -> v0.103.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin v0.102.0 -> v0.103.0

Copy link

codecov bot commented Jun 19, 2024

Codecov Report

All modified and coverable lines are covered by tests βœ…

Project coverage is 96.38%. Comparing base (f5d175b) to head (13aadad).

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #5660      +/-   ##
==========================================
- Coverage   96.39%   96.38%   -0.02%     
==========================================
  Files         329      329              
  Lines       16056    16056              
==========================================
- Hits        15477    15475       -2     
- Misses        403      404       +1     
- Partials      176      177       +1     
Flag Coverage Ξ”
badger_v1 8.04% <ΓΈ> (ΓΈ)
badger_v2 ?
cassandra-3.x-v1 16.60% <ΓΈ> (ΓΈ)
cassandra-3.x-v2 1.84% <ΓΈ> (ΓΈ)
cassandra-4.x-v1 16.60% <ΓΈ> (ΓΈ)
cassandra-4.x-v2 1.84% <ΓΈ> (ΓΈ)
elasticsearch-7.x-v1 18.87% <ΓΈ> (ΓΈ)
elasticsearch-8.x-v1 19.05% <ΓΈ> (-0.02%) ⬇️
elasticsearch-8.x-v2 19.05% <ΓΈ> (ΓΈ)
grpc_v1 9.46% <ΓΈ> (-0.02%) ⬇️
grpc_v2 ?
kafka 9.76% <ΓΈ> (ΓΈ)
opensearch-1.x-v1 18.92% <ΓΈ> (+0.01%) ⬆️
opensearch-2.x-v1 18.91% <ΓΈ> (-0.02%) ⬇️
opensearch-2.x-v2 18.92% <ΓΈ> (ΓΈ)
unittests 94.23% <ΓΈ> (-0.02%) ⬇️

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.

@yurishkuro yurishkuro enabled auto-merge (squash) June 19, 2024 23:48
@yurishkuro yurishkuro merged commit 79352d9 into jaegertracing:main Jun 19, 2024
41 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
changelog:dependencies Update to dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants