Skip to content

fix(deps): update all opentelemetry collector contrib packages to v0.119.0 #37666

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

Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 4, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/open-telemetry/opentelemetry-collector-contrib/cmd/telemetrygen v0.118.0 -> v0.119.0 age adoption passing confidence
github.com/open-telemetry/opentelemetry-collector-contrib/internal/common v0.118.0 -> v0.119.0 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

open-telemetry/opentelemetry-collector-contrib (github.com/open-telemetry/opentelemetry-collector-contrib/cmd/telemetrygen)

v0.119.0

Compare Source

🛑 Breaking changes 🛑
  • receiver/cloudfoundry: Promote cloudfoundry.resourceAttributes.allow feature gate to beta (#​34824)
    The cloudfoundry.resourceAttributes.allow feature gate is now enabled by default.

  • datadogexporter: Remove stable feature gate exporter.datadog.hostname.preview (#​37561)

  • exporter/prometheusremotewrite: Change exporter.prometheusremotewriteexporter.deprecateCreatedMetric feature gate from Beta to Stable version. (#​35003)
    The export_created_metric configuration parameter is now permanently deprecated.

  • elasticsearchexporter: Consistently store the structured body of logs and events in body.structured in otel mode (#​37387)

  • solacereceiver: Update validation step to allow only one auth method. (#​36386)

🚩 Deprecations 🚩
  • signalfxreceiver: access_token_passthrough is deprecated (#​37575)
    • "access_token_passthrough is deprecated."
    • "Please enable include_metadata in the receiver and add the following config to the batch processor:"
    batch:
      metadata_keys: [X-Sf-Token]
🚀 New components 🚀
  • envoyalsreceiver: Add a new receiver for the Envoy ALS (Access Log Service). (#​36464)
  • metricstarttimeprocessor: Add the initial skeleton for the metricsstarttimeprocessor (#​37186)
    The component is still in development and is not ready for use.
  • exporter/sematext: Add a new component for exporting metrics and logs to Sematext (#​36465)
💡 Enhancements 💡
  • awss3exporter: Add support for S3 Storgeclass (#​35173)

  • processor/transformprocessor: Add support for flat configuration style. (#​29017)
    The flat configuration style allows users to configure statements by providing a list of statements instead of a
    structured configuration map. The statement's context is expressed by adding the context's name prefix to path names,
    which are used to infer and to select the appropriate context for the statement.

  • httpcheckreceiver: Added support for specifying multiple endpoints in the httpcheckreceiver using the endpoints field. Users can now monitor multiple URLs with a single configuration block, improving flexibility and reducing redundancy. (#​37121)

  • signaltometricsconnector: Move signal to metrics connector to alpha stability (#​35930)

  • exporter/clickhouse: Adding missing examples of DDL created by the clickhouse exporter (#​35903)

  • opampsupervisor: add support for headers configuration for reporting own telemetry (#​37353)

  • opampsupervisor: report own metrics via OTLP instead of prometheus receiver (#​37346)

  • resourcedetectionprocessor: Expose additional configuration parameters for the AWS metadata client used by the EC2 detector (#​35936)
    In some cases, you might need to change the behavior of the AWS metadata client from the standard retryer

    By default, the client retries 3 times with a max backoff delay of 20s.

    We offer a limited set of options to override those defaults specifically, such that you can set the client to retry 10 times, for up to 5 minutes, for example:

    processors:
      resourcedetection/ec2:
        detectors: ["ec2"]
        ec2:
          max_attempts: 10
          max_backoff: 5m
  • cumulativetodeltaprocessor: Add metric type filter for cumulativetodelta processor (#​33673)

  • datadogconnector: Support obfuscating sql queries in APM stats (#​37457)
    Ensure that feature flags "enable_receive_resource_spans_v2" and "enable_operation_and_resource_name_logic_v2"
    are also enabled on both Datadog Exporter and Datadog Connector so that span attributes are properly
    mapped to span type and span resource in Datadog APM; otherwise spans and apm stats may not be
    obfuscated and attributes on stats payloads may not match traces.
    See https://docs.datadoghq.com/opentelemetry/schema_semantics/semantic_mapping/?tab=datadogexporter#mapping-opentelemetry-database-system-type-to-datadog-span-type

    NOTE: Long/complex SQL queries may cause a performance impact on APM Stats calculation in Datadog Connector.
    Consider implementing sampling in your pipeline prior to sending traces to Datadog Connector if you experience this.

  • resourcedetectionprocessor: Add fail_on_missing_metadata option on EC2 detector (#​35936)
    If the EC2 metadata endpoint is unavailable, the EC2 detector by default ignores the error.
    By setting fail_on_missing_metadata to true on the detector, the user will now trigger an error explicitly,
    which will stop the collector from starting.

  • elasticsearchexporter: Group data points into a single document even if they are from different but equal resources (#​37509)
    This may prevent document rejections in case the same batch contains different resources or scopes that have the same set of attributes

  • elasticsearchexporter: Add config logs_dynamic_id to dynamically set the document ID of log records using log record attribute elasticsearch.document_id (#​36882)

  • elasticsearchexporter: Declare MutatesData: false (#​37234)
    When multiple exporters are used, the collector doesn't need to clone the incoming data anymore

  • resourcedetectionprocessor: The gcp resource detector will now detect resource attributes identifying a GCE instance's managed instance group. (#​36142)

  • jaegerreceiver: Log the endpoints of different servers started by jaegerreceiver (#​36961)
    This change logs the endpoints of different servers started by jaegerreceiver. It simplifies debugging by ensuring log messages match configuration settings.

  • githubgen: Switch over all usages of githubgen to the new tool location, since the old tool was deprecated (#​37412, #​37294)

  • hostmetrics/process: Added support for tracking process.uptime (#​36667)

  • netflowreceiver: Adds the implementation of the netflow receiver (#​32732)
    The receiver now supports receiving NetFlow v5, NetFow v9, IPFIX, and sFlow v5 logs.

  • googlecloudpubsubreceiver: Added support for encoding extensions. (#​37109)

  • processor/transformprocessor: Replace parser collection implementations with ottl.ParserCollection and add initial support for expressing statement's context via path names. (#​29017)

  • prometheusreceiver: Add receiver.prometheusreceiver.UseCollectorStartTimeFallback featuregate for the start time metric adjuster to use the collector start time as an approximation of process start time as a fallback. (#​36364)

  • tailsamplingprocessor: Reworked the consume traces, sampling decision, and policy loading paths to improve performance and readability (#​37560)

🧰 Bug fixes 🧰
  • deltatocumulativeprocessor: In order to cap number of histogram buckets take the min of desired scale across negative and positive buckets instead of the max (#​37416)

  • filelogreceiver: Fix issue where flushed tokens could be truncated. (#​35042)

  • connector/routing: Fix config validation with context other than resource (#​37410)

  • k8sattributesprocessor: Wait for the other informers to complete their initial sync before starting the pod informers (#​37056)

  • metricsgenerationprocessor: Generated metric name may not match metric being scaled (#​37474)

  • otlpjsonfilereceiver: Include file attributes and append it to the log record (#​36641)

  • routingconnector: The connector splits the original payload so that it may be emitted in parts to each route. (#​37390)

  • pkg/stanza: Fix default source identifier in recombine operator (#​37210)
    Its defualt value is now aligned with the semantic conventions: attributes["log.file.path"]

  • tailsamplingprocessor: Fixed sampling decision metrics otelcol_processor_tail_sampling_sampling_trace_dropped_too_early and otelcol_processor_tail_sampling_sampling_policy_evaluation_error_total, these were sometimes overcounted. (#​37212)
    As a result of this change non-zero values of otelcol_processor_tail_sampling_sampling_trace_dropped_too_early
    and otelcol_processor_tail_sampling_sampling_policy_evaluation_error_total metrics will be lower.
    Before this fix, errors got counted several times depending on the amount of traces being processed
    that tick and where in the batch the error happened.
    Zero values are unaffected.

  • signalfxexporter: Warn on dropping metric data points when they have more than allowed dimension count (#​37484)
    The SignalFx exporter drops metric data points if they have more than 36 dimensions.
    Currently, the exporter logs at debug level when this occurs.
    With this change, the exporter will log at the warning level.


Configuration

📅 Schedule: Branch creation - "on tuesday" (UTC), 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 renovate bot added the dependencies Pull requests that update a dependency file label Feb 4, 2025
@renovate renovate bot requested a review from mx-psi as a code owner February 4, 2025 10:10
@renovate renovate bot added the renovatebot label Feb 4, 2025
@renovate renovate bot requested review from codeboten and a team as code owners February 4, 2025 10:10
Copy link
Contributor Author

renovate bot commented Feb 4, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: cmd/telemetrygen/internal/e2etest/go.sum
Command failed: install-tool golang 1.22.0

@github-actions github-actions bot added the cmd/telemetrygen telemetrygen command label Feb 4, 2025
@github-actions github-actions bot requested a review from Erog38 February 4, 2025 10:11
@codeboten codeboten merged commit 9e035d5 into main Feb 4, 2025
162 checks passed
@codeboten codeboten deleted the renovate/all-opentelemetry-collector-contrib-packages branch February 4, 2025 17:04
@github-actions github-actions bot added this to the next release milestone Feb 4, 2025
yiquanzhou added a commit to dash0hq/opentelemetry-collector-contrib that referenced this pull request Feb 5, 2025
* main: (392 commits)
  fix(deps): update module golang.org/x/text to v0.22.0 (open-telemetry#37686)
  [exporter/bmchelix] Second PR of New component: BMC Helix Exporter (open-telemetry#37350)
  chore(deps): update otel/opentelemetry-collector-contrib docker tag to v0.119.0 (open-telemetry#37688)
  [chore] fix codeowners allowlist (open-telemetry#37684)
  chore(deps): update otel/opentelemetry-collector docker tag to v0.119.0 (open-telemetry#37687)
  Update jpkroehling's affiliation (open-telemetry#37683)
  fix(deps): update module github.com/clickhouse/clickhouse-go/v2 to v2.30.3 (open-telemetry#37655)
  fix(deps): update all opentelemetry collector contrib packages to v0.119.0 (open-telemetry#37666)
  fix(deps): update module github.com/elastic/go-docappender/v2 to v2.4.0 (open-telemetry#37667)
  fix(deps): update all golang.org/x packages (open-telemetry#37680)
  [exporter/prometheusremotewrite] Fix WAL deadlock (open-telemetry#37630)
  fix(deps): update opentelemetry-go monorepo (open-telemetry#37673)
  fix(deps): update module github.com/shirou/gopsutil/v4 to v4.25.1 (open-telemetry#37671)
  fix(deps): update module github.com/spf13/pflag to v1.0.6 (open-telemetry#37658)
  fix(deps): update all github.com/aws packages (open-telemetry#37661)
  [chore] Prepare release 0.119.0 (open-telemetry#37660)
  make update-otel OTEL_VERSION=v0.119.0 OTEL_STABLE_VERSION=v1.25.0 (open-telemetry#37656)
  add documentation and warning log for deprecating AccessTokenPassthrough (open-telemetry#37575)
  chore: add myself, echlebek, as a codeowner (open-telemetry#37650)
  [processor/transform] Add support for flat configuration style (open-telemetry#37444)
  ...
yiquanzhou added a commit to dash0hq/opentelemetry-collector-contrib that referenced this pull request Feb 5, 2025
* main: (392 commits)
  fix(deps): update module golang.org/x/text to v0.22.0 (open-telemetry#37686)
  [exporter/bmchelix] Second PR of New component: BMC Helix Exporter (open-telemetry#37350)
  chore(deps): update otel/opentelemetry-collector-contrib docker tag to v0.119.0 (open-telemetry#37688)
  [chore] fix codeowners allowlist (open-telemetry#37684)
  chore(deps): update otel/opentelemetry-collector docker tag to v0.119.0 (open-telemetry#37687)
  Update jpkroehling's affiliation (open-telemetry#37683)
  fix(deps): update module github.com/clickhouse/clickhouse-go/v2 to v2.30.3 (open-telemetry#37655)
  fix(deps): update all opentelemetry collector contrib packages to v0.119.0 (open-telemetry#37666)
  fix(deps): update module github.com/elastic/go-docappender/v2 to v2.4.0 (open-telemetry#37667)
  fix(deps): update all golang.org/x packages (open-telemetry#37680)
  [exporter/prometheusremotewrite] Fix WAL deadlock (open-telemetry#37630)
  fix(deps): update opentelemetry-go monorepo (open-telemetry#37673)
  fix(deps): update module github.com/shirou/gopsutil/v4 to v4.25.1 (open-telemetry#37671)
  fix(deps): update module github.com/spf13/pflag to v1.0.6 (open-telemetry#37658)
  fix(deps): update all github.com/aws packages (open-telemetry#37661)
  [chore] Prepare release 0.119.0 (open-telemetry#37660)
  make update-otel OTEL_VERSION=v0.119.0 OTEL_STABLE_VERSION=v1.25.0 (open-telemetry#37656)
  add documentation and warning log for deprecating AccessTokenPassthrough (open-telemetry#37575)
  chore: add myself, echlebek, as a codeowner (open-telemetry#37650)
  [processor/transform] Add support for flat configuration style (open-telemetry#37444)
  ...
chengchuanpeng pushed a commit to chengchuanpeng/opentelemetry-collector-contrib that referenced this pull request Feb 8, 2025
…119.0 (open-telemetry#37666)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/open-telemetry/opentelemetry-collector-contrib/cmd/telemetrygen](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib)
| `v0.118.0` -> `v0.119.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2fcmd%2ftelemetrygen/v0.119.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2fcmd%2ftelemetrygen/v0.119.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2fcmd%2ftelemetrygen/v0.118.0/v0.119.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2fcmd%2ftelemetrygen/v0.118.0/v0.119.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/open-telemetry/opentelemetry-collector-contrib/internal/common](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib)
| `v0.118.0` -> `v0.119.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2finternal%2fcommon/v0.119.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2finternal%2fcommon/v0.119.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2finternal%2fcommon/v0.118.0/v0.119.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2finternal%2fcommon/v0.118.0/v0.119.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>open-telemetry/opentelemetry-collector-contrib
(github.com/open-telemetry/opentelemetry-collector-contrib/cmd/telemetrygen)</summary>

###
[`v0.119.0`](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/blob/HEAD/CHANGELOG.md#v01190)

[Compare
Source](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/compare/v0.118.0...v0.119.0)

##### 🛑 Breaking changes 🛑

- `receiver/cloudfoundry`: Promote
`cloudfoundry.resourceAttributes.allow` feature gate to beta
([#&open-telemetry#8203;34824](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34824))
The `cloudfoundry.resourceAttributes.allow` feature gate is now enabled
by default.

- `datadogexporter`: Remove stable feature gate
`exporter.datadog.hostname.preview`
([#&open-telemetry#8203;37561](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37561))

- `exporter/prometheusremotewrite`: Change
`exporter.prometheusremotewriteexporter.deprecateCreatedMetric` feature
gate from Beta to Stable version.
([#&open-telemetry#8203;35003](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35003))
The `export_created_metric` configuration parameter is now permanently
deprecated.

- `elasticsearchexporter`: Consistently store the structured body of
logs and events in `body.structured` in `otel` mode
([#&open-telemetry#8203;37387](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37387))

- `solacereceiver`: Update validation step to allow only one auth
method.
([#&open-telemetry#8203;36386](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/36386))

##### 🚩 Deprecations 🚩

- `signalfxreceiver`: `access_token_passthrough` is deprecated
([#&open-telemetry#8203;37575](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37575))
    -   "`access_token_passthrough` is deprecated."
- "Please enable include_metadata in the receiver and add the following
config to the batch processor:"
    ```yaml
    batch:
      metadata_keys: [X-Sf-Token]
    ```

##### 🚀 New components 🚀

- `envoyalsreceiver`: Add a new receiver for the Envoy ALS (Access Log
Service).
([#&open-telemetry#8203;36464](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/36464))
- `metricstarttimeprocessor`: Add the initial skeleton for the
metricsstarttimeprocessor
([#&open-telemetry#8203;37186](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37186))
    The component is still in development and is not ready for use.
- `exporter/sematext`: Add a new component for exporting metrics and
logs to Sematext
([#&open-telemetry#8203;36465](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/36465))

##### 💡 Enhancements 💡

- `awss3exporter`: Add support for S3 Storgeclass
([#&open-telemetry#8203;35173](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35173))

- `processor/transformprocessor`: Add support for flat configuration
style.
([#&open-telemetry#8203;29017](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/29017))
The flat configuration style allows users to configure statements by
providing a list of statements instead of a
structured configuration map. The statement's context is expressed by
adding the context's name prefix to path names,
which are used to infer and to select the appropriate context for the
statement.

- `httpcheckreceiver`: Added support for specifying multiple endpoints
in the `httpcheckreceiver` using the `endpoints` field. Users can now
monitor multiple URLs with a single configuration block, improving
flexibility and reducing redundancy.
([#&open-telemetry#8203;37121](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37121))

- `signaltometricsconnector`: Move signal to metrics connector to alpha
stability
([#&open-telemetry#8203;35930](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35930))

- `exporter/clickhouse`: Adding missing examples of DDL created by the
clickhouse exporter
([#&open-telemetry#8203;35903](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35903))

- `opampsupervisor`: add support for headers configuration for reporting
own telemetry
([#&open-telemetry#8203;37353](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37353))

- `opampsupervisor`: report own metrics via OTLP instead of prometheus
receiver
([#&open-telemetry#8203;37346](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37346))

- `resourcedetectionprocessor`: Expose additional configuration
parameters for the AWS metadata client used by the EC2 detector
([#&open-telemetry#8203;35936](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35936))
In some cases, you might need to change the behavior of the AWS metadata
client from the [standard
retryer](https://docs.aws.amazon.com/sdk-for-go/v2/developer-guide/configure-retries-timeouts.html)

By default, the client retries 3 times with a max backoff delay of 20s.

We offer a limited set of options to override those defaults
specifically, such that you can set the client to retry 10 times, for up
to 5 minutes, for example:

    ```yaml
    processors:
      resourcedetection/ec2:
        detectors: ["ec2"]
        ec2:
          max_attempts: 10
          max_backoff: 5m
    ```

- `cumulativetodeltaprocessor`: Add metric type filter for
cumulativetodelta processor
([#&open-telemetry#8203;33673](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/33673))

- `datadogconnector`: Support obfuscating sql queries in APM stats
([#&open-telemetry#8203;37457](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37457))
Ensure that feature flags "enable_receive_resource_spans_v2" and
"enable_operation_and_resource_name_logic_v2"
are also enabled on both Datadog Exporter and Datadog Connector so that
span attributes are properly
mapped to span type and span resource in Datadog APM; otherwise spans
and apm stats may not be
    obfuscated and attributes on stats payloads may not match traces.
See
https://docs.datadoghq.com/opentelemetry/schema_semantics/semantic_mapping/?tab=datadogexporter#mapping-opentelemetry-database-system-type-to-datadog-span-type

NOTE: Long/complex SQL queries may cause a performance impact on APM
Stats calculation in Datadog Connector.
Consider implementing sampling in your pipeline prior to sending traces
to Datadog Connector if you experience this.

- `resourcedetectionprocessor`: Add `fail_on_missing_metadata` option on
EC2 detector
([#&open-telemetry#8203;35936](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35936))
If the EC2 metadata endpoint is unavailable, the EC2 detector by default
ignores the error.
By setting `fail_on_missing_metadata` to true on the detector, the user
will now trigger an error explicitly,
    which will stop the collector from starting.

- `elasticsearchexporter`: Group data points into a single document even
if they are from different but equal resources
([#&open-telemetry#8203;37509](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37509))
This may prevent document rejections in case the same batch contains
different resources or scopes that have the same set of attributes

- `elasticsearchexporter`: Add config `logs_dynamic_id` to dynamically
set the document ID of log records using log record attribute
`elasticsearch.document_id`
([#&open-telemetry#8203;36882](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/36882))

- `elasticsearchexporter`: Declare MutatesData: false
([#&open-telemetry#8203;37234](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37234))
When multiple exporters are used, the collector doesn't need to clone
the incoming data anymore

- `resourcedetectionprocessor`: The `gcp` resource detector will now
detect resource attributes identifying a GCE instance's managed instance
group.
([#&open-telemetry#8203;36142](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/36142))

- `jaegerreceiver`: Log the endpoints of different servers started by
jaegerreceiver
([#&open-telemetry#8203;36961](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/36961))
This change logs the endpoints of different servers started by
jaegerreceiver. It simplifies debugging by ensuring log messages match
configuration settings.

- `githubgen`: Switch over all usages of githubgen to the new tool
location, since the old tool was deprecated
([#&open-telemetry#8203;37412](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37412),
[#&open-telemetry#8203;37294](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37294))

- `hostmetrics/process`: Added support for tracking process.uptime
([#&open-telemetry#8203;36667](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/36667))

- `netflowreceiver`: Adds the implementation of the netflow receiver
([#&open-telemetry#8203;32732](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/32732))
The receiver now supports receiving NetFlow v5, NetFow v9, IPFIX, and
sFlow v5 logs.

- `googlecloudpubsubreceiver`: Added support for encoding extensions.
([#&open-telemetry#8203;37109](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37109))

- `processor/transformprocessor`: Replace parser collection
implementations with `ottl.ParserCollection` and add initial support for
expressing statement's context via path names.
([#&open-telemetry#8203;29017](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/29017))

- `prometheusreceiver`: Add
`receiver.prometheusreceiver.UseCollectorStartTimeFallback` featuregate
for the start time metric adjuster to use the collector start time as an
approximation of process start time as a fallback.
([#&open-telemetry#8203;36364](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/36364))

- `tailsamplingprocessor`: Reworked the consume traces, sampling
decision, and policy loading paths to improve performance and
readability
([#&open-telemetry#8203;37560](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37560))

##### 🧰 Bug fixes 🧰

- `deltatocumulativeprocessor`: In order to cap number of histogram
buckets take the min of desired scale across negative and positive
buckets instead of the max
([#&open-telemetry#8203;37416](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37416))

- `filelogreceiver`: Fix issue where flushed tokens could be truncated.
([#&open-telemetry#8203;35042](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35042))

- `connector/routing`: Fix config validation with context other than
`resource`
([#&open-telemetry#8203;37410](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37410))

- `k8sattributesprocessor`: Wait for the other informers to complete
their initial sync before starting the pod informers
([#&open-telemetry#8203;37056](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37056))

- `metricsgenerationprocessor`: Generated metric name may not match
metric being scaled
([#&open-telemetry#8203;37474](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37474))

- `otlpjsonfilereceiver`: Include file attributes and append it to the
log record
([#&open-telemetry#8203;36641](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/36641))

- `routingconnector`: The connector splits the original payload so that
it may be emitted in parts to each route.
([#&open-telemetry#8203;37390](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37390))

- `pkg/stanza`: Fix default source identifier in recombine operator
([#&open-telemetry#8203;37210](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37210))
Its defualt value is now aligned with the semantic conventions:
`attributes["log.file.path"]`

- `tailsamplingprocessor`: Fixed sampling decision metrics
`otelcol_processor_tail_sampling_sampling_trace_dropped_too_early` and
`otelcol_processor_tail_sampling_sampling_policy_evaluation_error_total`,
these were sometimes overcounted.
([#&open-telemetry#8203;37212](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37212))
As a result of this change non-zero values of
`otelcol_processor_tail_sampling_sampling_trace_dropped_too_early`
and
`otelcol_processor_tail_sampling_sampling_policy_evaluation_error_total`
metrics will be lower.
Before this fix, errors got counted several times depending on the
amount of traces being processed
    that tick and where in the batch the error happened.
    Zero values are unaffected.

- `signalfxexporter`: Warn on dropping metric data points when they have
more than allowed dimension count
([#&open-telemetry#8203;37484](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37484))
The SignalFx exporter drops metric data points if they have more than 36
dimensions.
    Currently, the exporter logs at debug level when this occurs.
    With this change, the exporter will log at the warning level.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "on tuesday" (UTC), 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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Boten <[email protected]>
zeck-ops pushed a commit to zeck-ops/opentelemetry-collector-contrib that referenced this pull request Apr 23, 2025
…119.0 (open-telemetry#37666)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/open-telemetry/opentelemetry-collector-contrib/cmd/telemetrygen](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib)
| `v0.118.0` -> `v0.119.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2fcmd%2ftelemetrygen/v0.119.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2fcmd%2ftelemetrygen/v0.119.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2fcmd%2ftelemetrygen/v0.118.0/v0.119.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2fcmd%2ftelemetrygen/v0.118.0/v0.119.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/open-telemetry/opentelemetry-collector-contrib/internal/common](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib)
| `v0.118.0` -> `v0.119.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2finternal%2fcommon/v0.119.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2finternal%2fcommon/v0.119.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2finternal%2fcommon/v0.118.0/v0.119.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2finternal%2fcommon/v0.118.0/v0.119.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>open-telemetry/opentelemetry-collector-contrib
(github.com/open-telemetry/opentelemetry-collector-contrib/cmd/telemetrygen)</summary>

###
[`v0.119.0`](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/blob/HEAD/CHANGELOG.md#v01190)

[Compare
Source](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/compare/v0.118.0...v0.119.0)

##### 🛑 Breaking changes 🛑

- `receiver/cloudfoundry`: Promote
`cloudfoundry.resourceAttributes.allow` feature gate to beta
([#&open-telemetry#8203;34824](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/34824))
The `cloudfoundry.resourceAttributes.allow` feature gate is now enabled
by default.

- `datadogexporter`: Remove stable feature gate
`exporter.datadog.hostname.preview`
([#&open-telemetry#8203;37561](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37561))

- `exporter/prometheusremotewrite`: Change
`exporter.prometheusremotewriteexporter.deprecateCreatedMetric` feature
gate from Beta to Stable version.
([#&open-telemetry#8203;35003](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35003))
The `export_created_metric` configuration parameter is now permanently
deprecated.

- `elasticsearchexporter`: Consistently store the structured body of
logs and events in `body.structured` in `otel` mode
([#&open-telemetry#8203;37387](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37387))

- `solacereceiver`: Update validation step to allow only one auth
method.
([#&open-telemetry#8203;36386](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/36386))

##### 🚩 Deprecations 🚩

- `signalfxreceiver`: `access_token_passthrough` is deprecated
([#&open-telemetry#8203;37575](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37575))
    -   "`access_token_passthrough` is deprecated."
- "Please enable include_metadata in the receiver and add the following
config to the batch processor:"
    ```yaml
    batch:
      metadata_keys: [X-Sf-Token]
    ```

##### 🚀 New components 🚀

- `envoyalsreceiver`: Add a new receiver for the Envoy ALS (Access Log
Service).
([#&open-telemetry#8203;36464](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/36464))
- `metricstarttimeprocessor`: Add the initial skeleton for the
metricsstarttimeprocessor
([#&open-telemetry#8203;37186](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37186))
    The component is still in development and is not ready for use.
- `exporter/sematext`: Add a new component for exporting metrics and
logs to Sematext
([#&open-telemetry#8203;36465](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/36465))

##### 💡 Enhancements 💡

- `awss3exporter`: Add support for S3 Storgeclass
([#&open-telemetry#8203;35173](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35173))

- `processor/transformprocessor`: Add support for flat configuration
style.
([#&open-telemetry#8203;29017](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/29017))
The flat configuration style allows users to configure statements by
providing a list of statements instead of a
structured configuration map. The statement's context is expressed by
adding the context's name prefix to path names,
which are used to infer and to select the appropriate context for the
statement.

- `httpcheckreceiver`: Added support for specifying multiple endpoints
in the `httpcheckreceiver` using the `endpoints` field. Users can now
monitor multiple URLs with a single configuration block, improving
flexibility and reducing redundancy.
([#&open-telemetry#8203;37121](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37121))

- `signaltometricsconnector`: Move signal to metrics connector to alpha
stability
([#&open-telemetry#8203;35930](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35930))

- `exporter/clickhouse`: Adding missing examples of DDL created by the
clickhouse exporter
([#&open-telemetry#8203;35903](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35903))

- `opampsupervisor`: add support for headers configuration for reporting
own telemetry
([#&open-telemetry#8203;37353](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37353))

- `opampsupervisor`: report own metrics via OTLP instead of prometheus
receiver
([#&open-telemetry#8203;37346](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37346))

- `resourcedetectionprocessor`: Expose additional configuration
parameters for the AWS metadata client used by the EC2 detector
([#&open-telemetry#8203;35936](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35936))
In some cases, you might need to change the behavior of the AWS metadata
client from the [standard
retryer](https://docs.aws.amazon.com/sdk-for-go/v2/developer-guide/configure-retries-timeouts.html)

By default, the client retries 3 times with a max backoff delay of 20s.

We offer a limited set of options to override those defaults
specifically, such that you can set the client to retry 10 times, for up
to 5 minutes, for example:

    ```yaml
    processors:
      resourcedetection/ec2:
        detectors: ["ec2"]
        ec2:
          max_attempts: 10
          max_backoff: 5m
    ```

- `cumulativetodeltaprocessor`: Add metric type filter for
cumulativetodelta processor
([#&open-telemetry#8203;33673](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/33673))

- `datadogconnector`: Support obfuscating sql queries in APM stats
([#&open-telemetry#8203;37457](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37457))
Ensure that feature flags "enable_receive_resource_spans_v2" and
"enable_operation_and_resource_name_logic_v2"
are also enabled on both Datadog Exporter and Datadog Connector so that
span attributes are properly
mapped to span type and span resource in Datadog APM; otherwise spans
and apm stats may not be
    obfuscated and attributes on stats payloads may not match traces.
See
https://docs.datadoghq.com/opentelemetry/schema_semantics/semantic_mapping/?tab=datadogexporter#mapping-opentelemetry-database-system-type-to-datadog-span-type

NOTE: Long/complex SQL queries may cause a performance impact on APM
Stats calculation in Datadog Connector.
Consider implementing sampling in your pipeline prior to sending traces
to Datadog Connector if you experience this.

- `resourcedetectionprocessor`: Add `fail_on_missing_metadata` option on
EC2 detector
([#&open-telemetry#8203;35936](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35936))
If the EC2 metadata endpoint is unavailable, the EC2 detector by default
ignores the error.
By setting `fail_on_missing_metadata` to true on the detector, the user
will now trigger an error explicitly,
    which will stop the collector from starting.

- `elasticsearchexporter`: Group data points into a single document even
if they are from different but equal resources
([#&open-telemetry#8203;37509](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37509))
This may prevent document rejections in case the same batch contains
different resources or scopes that have the same set of attributes

- `elasticsearchexporter`: Add config `logs_dynamic_id` to dynamically
set the document ID of log records using log record attribute
`elasticsearch.document_id`
([#&open-telemetry#8203;36882](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/36882))

- `elasticsearchexporter`: Declare MutatesData: false
([#&open-telemetry#8203;37234](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37234))
When multiple exporters are used, the collector doesn't need to clone
the incoming data anymore

- `resourcedetectionprocessor`: The `gcp` resource detector will now
detect resource attributes identifying a GCE instance's managed instance
group.
([#&open-telemetry#8203;36142](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/36142))

- `jaegerreceiver`: Log the endpoints of different servers started by
jaegerreceiver
([#&open-telemetry#8203;36961](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/36961))
This change logs the endpoints of different servers started by
jaegerreceiver. It simplifies debugging by ensuring log messages match
configuration settings.

- `githubgen`: Switch over all usages of githubgen to the new tool
location, since the old tool was deprecated
([#&open-telemetry#8203;37412](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37412),
[#&open-telemetry#8203;37294](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37294))

- `hostmetrics/process`: Added support for tracking process.uptime
([#&open-telemetry#8203;36667](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/36667))

- `netflowreceiver`: Adds the implementation of the netflow receiver
([#&open-telemetry#8203;32732](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/32732))
The receiver now supports receiving NetFlow v5, NetFow v9, IPFIX, and
sFlow v5 logs.

- `googlecloudpubsubreceiver`: Added support for encoding extensions.
([#&open-telemetry#8203;37109](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37109))

- `processor/transformprocessor`: Replace parser collection
implementations with `ottl.ParserCollection` and add initial support for
expressing statement's context via path names.
([#&open-telemetry#8203;29017](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/29017))

- `prometheusreceiver`: Add
`receiver.prometheusreceiver.UseCollectorStartTimeFallback` featuregate
for the start time metric adjuster to use the collector start time as an
approximation of process start time as a fallback.
([#&open-telemetry#8203;36364](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/36364))

- `tailsamplingprocessor`: Reworked the consume traces, sampling
decision, and policy loading paths to improve performance and
readability
([#&open-telemetry#8203;37560](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37560))

##### 🧰 Bug fixes 🧰

- `deltatocumulativeprocessor`: In order to cap number of histogram
buckets take the min of desired scale across negative and positive
buckets instead of the max
([#&open-telemetry#8203;37416](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37416))

- `filelogreceiver`: Fix issue where flushed tokens could be truncated.
([#&open-telemetry#8203;35042](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/35042))

- `connector/routing`: Fix config validation with context other than
`resource`
([#&open-telemetry#8203;37410](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37410))

- `k8sattributesprocessor`: Wait for the other informers to complete
their initial sync before starting the pod informers
([#&open-telemetry#8203;37056](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37056))

- `metricsgenerationprocessor`: Generated metric name may not match
metric being scaled
([#&open-telemetry#8203;37474](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37474))

- `otlpjsonfilereceiver`: Include file attributes and append it to the
log record
([#&open-telemetry#8203;36641](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/36641))

- `routingconnector`: The connector splits the original payload so that
it may be emitted in parts to each route.
([#&open-telemetry#8203;37390](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37390))

- `pkg/stanza`: Fix default source identifier in recombine operator
([#&open-telemetry#8203;37210](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37210))
Its defualt value is now aligned with the semantic conventions:
`attributes["log.file.path"]`

- `tailsamplingprocessor`: Fixed sampling decision metrics
`otelcol_processor_tail_sampling_sampling_trace_dropped_too_early` and
`otelcol_processor_tail_sampling_sampling_policy_evaluation_error_total`,
these were sometimes overcounted.
([#&open-telemetry#8203;37212](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37212))
As a result of this change non-zero values of
`otelcol_processor_tail_sampling_sampling_trace_dropped_too_early`
and
`otelcol_processor_tail_sampling_sampling_policy_evaluation_error_total`
metrics will be lower.
Before this fix, errors got counted several times depending on the
amount of traces being processed
    that tick and where in the batch the error happened.
    Zero values are unaffected.

- `signalfxexporter`: Warn on dropping metric data points when they have
more than allowed dimension count
([#&open-telemetry#8203;37484](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/37484))
The SignalFx exporter drops metric data points if they have more than 36
dimensions.
    Currently, the exporter logs at debug level when this occurs.
    With this change, the exporter will log at the warning level.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "on tuesday" (UTC), 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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Boten <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cmd/telemetrygen telemetrygen command dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants