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

[pull] main from open-telemetry:main #41

Closed
wants to merge 175 commits into from

Conversation

pull[bot]
Copy link

@pull pull bot commented Jul 13, 2024

See Commits and Changes for more details.


Created by pull[bot]

Can you help keep this open source service alive? 💖 Please sponsor : )

codeboten and others added 9 commits July 12, 2024 10:16
Matt has been actively contributing to the Collector for some time. The
maintainers propose to promote him to Approver.

---------

Signed-off-by: Alex Boten <[email protected]>
…34030)

**Description:** <Describe what has changed.>
Use Agent modules for validating hostname

**Link to tracking Issue:** <Issue number if applicable>

**Testing:** <Describe what testing was performed and which tests were
added.>

**Documentation:** <Describe the documentation added.>
**Description:** <Describe what has changed.>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->

Introduced `IsRootSpan()` converter function which returns `true` if the
span in the corresponding context is root, that means its
`parent_span_id` equals to hexadecimal representation of zero. In all
other scenarios function returns `false`.

**Link to tracking Issue:** #32918

**Testing:** 

- unit tests
- e2e tests

**Documentation:** <Describe the documentation added.>

- README entry

---------

Signed-off-by: odubajDT <[email protected]>
Co-authored-by: Tiffany Hrabusa <[email protected]>
#33674)

**Description:** 

Allow selecting percentiles when using summary type:
```
receivers:
  statsd:
    endpoint: "0.0.0.0:8125"
   ...
    timer_histogram_mapping:
      - statsd_type: "timing"
        observer_type: "summary"
        summary: 
          percentiles: [0, 10, 50, 90, 95, 99, 100]
```

**Link to tracking Issue:** #33701
**Description:** Fixes incorrect data item sent count due to stopping
the load generator.

**Link to tracking Issue:** Fixes
#34057

**Testing:**

Run `cd testbed/testbed/ && while go test -v -count=1
-run=TestGeneratorAndBackend ./...; do :; done` for a satisfactory
duration and ensure that there are no failures.
)

Fix issue when consumer offset store random value

Fixes: #33309
This was pulling in an old version of nats-server which triggered
security scanning.

Signed-off-by: Alex Boten <[email protected]>
**Description:** 
We would like to implement a new observer for
[Cloudfoundry](https://www.cloudfoundry.org/) containers/applications.
The idea is not make use of the main API but the local one, which is
available as unix socket on each node and manages the containers
lifecycle. The main API would remain as optional and only to get
Application info (which only involves one GET http request once the app
id is known).


**Link to tracking Issue:**
[33618](#33618)

**Testing:** First component PR

**Documentation:** Added Readme

---------

Co-authored-by: Tomás Mota <[email protected]>
Co-authored-by: Jose Riguera <[email protected]>
Co-authored-by: Tomás Mota <[email protected]>
Co-authored-by: Curtis Robert <[email protected]>
Co-authored-by: José Riguera Lopez <[email protected]>
**Description:** `make update-otel` to
open-telemetry/opentelemetry-collector@6227646

---------

Signed-off-by: Pablo Baeyens <[email protected]>
@mx-psi mx-psi requested a review from cparkins as a code owner July 15, 2024 10:01
mx-psi and others added 20 commits July 15, 2024 13:07
…version (#34043)

**Description:** <Describe what has changed.>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->

Adds a hint like this to `api_version`:
```
Hint: You may want to wrap the 'api_version' value in quotes (api_version: "1.25")
```

**Testing:**
<details>
<summary>docker_stats config and output</summary>

#### Config

```yaml
receivers:
  docker_stats:
    collection_interval: 2s
    api_version: 1.25 # Floating value

exporters:
  nop:

service:
  pipelines:
    metrics:
      receivers: [docker_stats]
      exporters: [nop]
```

#### Output
```
Error: failed to get config: cannot unmarshal the configuration: 1 error(s) decoding:

* error decoding 'receivers': error reading configuration for "docker_stats": 1 error(s) decoding:

* 'api_version' expected type 'string', got unconvertible type 'float64', value: '1.25'.

Hint: You may want to wrap the 'api_version' value in quotes (api_version: "1.25")

Hint: Temporarily restore the previous behavior by disabling 
      the `confmap.strictlyTypedInput` feature gate. More details at:
      open-telemetry/opentelemetry-collector#10552
```


</details>


<details>
<summary>docker_observer config and output</summary>

```yaml
receivers:
  nop:

exporters:
  nop:

extensions:
  docker_observer:
    api_version: 1.25

service:
  extensions: [docker_observer]
  pipelines:
    metrics:
      receivers: [nop]
      exporters: [nop]
```

```
Error: failed to get config: cannot unmarshal the configuration: 1 error(s) decoding:

* error decoding 'extensions': error reading configuration for "docker_observer": 1 error(s) decoding:

* 'api_version' expected type 'string', got unconvertible type 'float64', value: '1.25'.

Hint: You may want to wrap the 'api_version' value in quotes (api_version: "1.25")

Hint: Temporarily restore the previous behavior by disabling 
      the `confmap.strictlyTypedInput` feature gate. More details at:
      open-telemetry/opentelemetry-collector#10552
```

</details>
**Description:** <Describe what has changed.>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
This PR increases some resource limits to make the load tests green for
now. Since they didn't run for 6 months, I assume some performance
degradation happened.
Example of a recent red load test run that just violated some resource
limits that will be fixed with this PR:
[link](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/9931396770)

**Link to tracking Issue:** [discussion on
slack](https://cloud-native.slack.com/archives/C07CCCMRXBK/p1721035998865689)

**Testing:** load tests only run on main branch

**Documentation:** NA

Signed-off-by: Moritz Wiesinger <[email protected]>
…g metrics (#33781)

**Description:**
Fixes the metadata dropping when processing metrics

**Link to tracking Issue:** #33419 

**Testing:** <Describe what testing was performed and which tests were
added.>
- unit tests

---------

Signed-off-by: odubajDT <[email protected]>
`make checks` is failing due to the order of code owners on a newly
introduced component. This implements the required change to fix the
check.

[Failing
action](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/9936498568/job/27444980411#step:16:25)
)

**Description:** <Describe what has changed.>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
The bug here is in the `setupQueries` method. The goal is to only scrape
a SQL Server instance if metrics gathered from that scrape are enabled.
However, for the performance counter query, I found that some metrics
weren't properly checked. This means that if `sqlserver.lock.wait.rate`
is disabled, none of the other metrics will be scraped, even if they're
enabled. This resolves the issue so that all metrics being gathered from
this query can trigger this scrape.

To confirm all required metrics are checked here, view [this
method](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/6a5b9e673a433ad2c6ed7ef2526a8920fd18cf0d/receiver/sqlserverreceiver/scraper.go#L171)
to see which metrics are being scraped using the perf counter query.

**Testing:** <Describe what testing was performed and which tests were
added.>
Updated tests, double checked manually to ensure all metrics are
properly being scraped.

**Documentation:** <Describe the documentation added.>
**Description:** <Describe what has changed.>
Relax checks on confmap validation messages to avoid running into
conflicts with mapstructure upgrades

See open-telemetry/opentelemetry-collector#10610
- tests don't pass with this upgrade of the mapstructure lib.
…s. (#32384)

**Description:** When scraping Windows Performance Counters, it's
possible that some counter objects do not exist. When that is the case,
`windowsperfcounters` will still create the `Metric` object with no
datapoints in it. Some exporters throw errors when encountering this.
The fix proposed in this PR does an extra pass after all metrics have
been scraped and removes the `Metric` objects for which no datapoints
were scraped.

**Link to tracking Issue:** #4972 

**Testing:** 
- Confirmed that `debug` exporter sees `ResourceMetrics` with no metrics
and doesn't throw.
- Confirmed that `prometheusremotewrite` exporter no longer complains
about empty datapoints and that it skips the export when no metrics are
available
- ~No unit tests added for now. I will add a unit test once I have
confirmation that this is the right way to remove empty datapoints~ Unit
test covering the changes and enabling fixture validation which was not
implemented.
Updates metrics example queries to use current spec for `calls` (instead
of `calls_total`)

**Description:** <Describe what has changed.>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->

**Link to tracking Issue:** <Issue number if applicable>

**Testing:** <Describe what testing was performed and which tests were
added.>

**Documentation:** <Describe the documentation added.>
**Description:**
Fixes
#33982
Switch `--rate` flag in telemetrygen to support Float64 values

**Link to tracking Issue:**
#33982

**Testing:** Added unit tests for float value cases

**Documentation:** N/A

---------

Co-authored-by: Antoine Toulme <[email protected]>
Co-authored-by: Alex Boten <[email protected]>
**Description:** This adds a new routing option for metrics: streamID.
This routes datapoints based on their streamID. That's the unique hash
of all it's attributes, plus the attributes and identifying information
of its resource, scope, and metric data

**Link to tracking Issue:**
#32513

**Testing:** I added to the existing testing suites, testing the new
routing, as well as adding to the benchmark suite

**Documentation:** I updated the README to describe the new routingKey:
`metricID`, and how it works
… service (#34049)

**Description:** <Describe what has changed.>
The PR is the fifth in a series to decompose #30673 into more manageable
pieces for review. This PR builds on #34028 and completes the gRPC
service by adding support for the streaming Watch RPC. For reference,
the
gRPC service is an implementation of [grpc_health_v1
service](https://github.com/grpc/grpc-proto/blob/master/grpc/health/v1/health.proto).

**Link to tracking Issue:** #26661

**Testing:** Units / manual

**Documentation:** Comments, etc.
**Description:**

Remove the `dedup` configuration setting, and always de-duplicate.
Elasticsearch does not permit duplicate keys in JSON objects, and this
configuration is adding more complexity to the code than it's worth.

I've simplified the `internal/objmodel` API slightly, unexporting the
`Sort` methods, which are internally called by the now unconditional
call to `Dedup`.

**Link to tracking Issue:**

Closes
#33773

**Testing:**

Ran the unit tests, which cover deduplication. None of the tests in
package elasticsearchexporter covered `dedup: false`.

**Documentation:** <Describe the documentation added.>

---------

Co-authored-by: Carson Ip <[email protected]>
Co-authored-by: Andrzej Stencel <[email protected]>
…Order option to CompareMetricsOption (#34076)

By introducing the new option and using it in the
`servicegraphconnector` test, the flakyness of the test and therefore
false positives are resolved

Fixes #33998

---------

Signed-off-by: odubajDT <[email protected]>
In preparation of v0.105.0.

---------

Signed-off-by: Antoine Toulme <[email protected]>
**Description:** <Describe what has changed.>
* Forwards custom messages through the supervisor to/from the agent

**Link to tracking Issue:** Closes #33575

**Testing:**
* Tested against BindPlane
* E2E tests aren't possible since there is no component using custom
messages in contrib right now.
* Added a couple unit tests
**Description:**

Now that
open-telemetry/opentelemetry-collector#10139 is
merged, we can rely on the Collector APIs to redact sensitive fields in
the config for us.

I tested this against the latest Collector core commit with the goal
that this will land in the v0.105.0 release.
…rs (#34080)

This PR proposes an additional constraint on vendor-specific components.
The idea behind automatically accepting components is to ensure that the
collector is interoperable with all vendors. Receivers and exporters act
as conversion points from and to vendor services, but processors and
connectors are generally intended to solve generic use cases. This is
not to say that vendors cannot add components otherwise, but voluntary
sponsorship of the component should be expected.

---------

Co-authored-by: Juraci Paixão Kröhling <[email protected]>
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| prom/prometheus | patch | `v2.53.0` -> `v2.53.1` |

---

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

---

### 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 this update
again.

---

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

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…ess (#34048)

We have options to extract headers and auth info from the client. This
change adds an option to extract client address by specifying
`client.address` value in the `from_context` field.

The code to extract address from the client info is taken from the
k8sattributes receiver.

Fixes
#34051

---------

Co-authored-by: Curtis Robert <[email protected]>
Prepare release v0.105.0

---------

Signed-off-by: Antoine Toulme <[email protected]>
renovate bot and others added 29 commits July 31, 2024 11:02
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[otel/opentelemetry-collector](https://togithub.com/open-telemetry/opentelemetry-collector-releases)
| minor | `0.105.0` -> `0.106.0` |
|
[otel/opentelemetry-collector-contrib](https://togithub.com/open-telemetry/opentelemetry-collector-releases)
| minor | `0.105.0` -> `0.106.0` |

---

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

---

### Release Notes

<details>
<summary>open-telemetry/opentelemetry-collector-releases
(otel/opentelemetry-collector)</summary>

###
[`v0.106.0`](https://togithub.com/open-telemetry/opentelemetry-collector-releases/releases/tag/v0.106.0)

[Compare
Source](https://togithub.com/open-telemetry/opentelemetry-collector-releases/compare/v0.105.0...v0.106.0)

Check the [v0.106.0 contrib
changelog](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/releases/tag/v0.106.0)
and the [v0.106.0 core
changelog](https://togithub.com/open-telemetry/opentelemetry-collector/releases/tag/v0.106.0)
for changelogs on specific components.

#### Changelog

-
[`1e67d14`](https://togithub.com/open-telemetry/opentelemetry-collector-releases/commit/1e67d14d30857b5306c7ff4c1091648eaf1497cc)
Prepare release v0.106.0
([#&#8203;615](https://togithub.com/open-telemetry/opentelemetry-collector-releases/issues/615))
-
[`a13cff5`](https://togithub.com/open-telemetry/opentelemetry-collector-releases/commit/a13cff51c124c20a8d423683f90a633298b5fe9e)
fix some broken conditionals in pipelines
([#&#8203;610](https://togithub.com/open-telemetry/opentelemetry-collector-releases/issues/610))
-
[`34bc10d`](https://togithub.com/open-telemetry/opentelemetry-collector-releases/commit/34bc10d950b71a0d42bf71d84d340e4b388849b8)
Bump docker/setup-buildx-action from 3.4.0 to 3.5.0
([#&#8203;612](https://togithub.com/open-telemetry/opentelemetry-collector-releases/issues/612))
-
[`c75880c`](https://togithub.com/open-telemetry/opentelemetry-collector-releases/commit/c75880c15b99f58decb99f8f93901a4a2c6f6ebf)
Bump docker/setup-qemu-action from 3.1.0 to 3.2.0
([#&#8203;613](https://togithub.com/open-telemetry/opentelemetry-collector-releases/issues/613))
-
[`10e46e7`](https://togithub.com/open-telemetry/opentelemetry-collector-releases/commit/10e46e74de356add246bf3c52b7c59d5159624ef)
Bump docker/login-action from 3.2.0 to 3.3.0
([#&#8203;614](https://togithub.com/open-telemetry/opentelemetry-collector-releases/issues/614))
-
[`3148572`](https://togithub.com/open-telemetry/opentelemetry-collector-releases/commit/3148572998c8f343960da3d727fca0834e406593)
update remaining goreleaser usages to v2
([#&#8203;609](https://togithub.com/open-telemetry/opentelemetry-collector-releases/issues/609))
-
[`4d6e084`](https://togithub.com/open-telemetry/opentelemetry-collector-releases/commit/4d6e08471090ceecbf5ef0bbfc5ec70cae23f42d)
Bump anchore/sbom-action from 0.16.1 to 0.17.0
([#&#8203;605](https://togithub.com/open-telemetry/opentelemetry-collector-releases/issues/605))
-
[`19d291d`](https://togithub.com/open-telemetry/opentelemetry-collector-releases/commit/19d291d72811b3b8623ccd2296b78a44f0212fca)
Update go to 1.22
([#&#8203;600](https://togithub.com/open-telemetry/opentelemetry-collector-releases/issues/600))

</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://www.mend.io/free-developer-tools/renovate/). View the
[repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Merge release/v0.106.x to main (with fixing conflicts)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| redis | final | minor | `7.2.5` -> `7.4.0` |

---

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

---

### 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 this update
again.

---

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

---

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

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[cloud.google.com/go/logging](https://togithub.com/googleapis/google-cloud-go)
| `v1.10.0` -> `v1.11.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/cloud.google.com%2fgo%2flogging/v1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/cloud.google.com%2fgo%2flogging/v1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/cloud.google.com%2fgo%2flogging/v1.10.0/v1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/cloud.google.com%2fgo%2flogging/v1.10.0/v1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

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

---

### 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 this update
again.

---

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

---

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

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

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
Co-authored-by: Yang Song <[email protected]>
…ib/internal/common to v0.106.1 (#34330)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/open-telemetry/opentelemetry-collector-contrib/internal/common](https://togithub.com/open-telemetry/opentelemetry-collector-contrib)
| `v0.105.0` -> `v0.106.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2finternal%2fcommon/v0.106.1?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.106.1?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.105.0/v0.106.1?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.105.0/v0.106.1?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/internal/common)</summary>

###
[`v0.106.1`](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/blob/HEAD/CHANGELOG.md#v01061)

[Compare
Source](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/compare/v0.106.0...v0.106.1)

##### 🧰 Bug fixes 🧰

- `configauth`: Fix unmarshaling of authentication in HTTP servers.
([#&#8203;34325](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/34325))
This brings in a bug fix from the core collector.
[https://github.com/open-telemetry/opentelemetry-collector/issues/10750](https://togithub.com/open-telemetry/opentelemetry-collector/issues/10750)0750.

###
[`v0.106.0`](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/blob/HEAD/CHANGELOG.md#v01060)

[Compare
Source](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/compare/v0.105.0...v0.106.0)

##### 🛑 Breaking changes 🛑

- `vcenterreceiver`: Enables various vCenter metrics that were disabled
by default until v0.106.0
([#&#8203;33607](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/33607))
The following metrics will be enabled by default
"vcenter.datacenter.cluster.count", "vcenter.datacenter.vm.count",
"vcenter.datacenter.datastore.count",
"vcenter.datacenter.host.count", "vcenter.datacenter.disk.space",
"vcenter.datacenter.cpu.limit", "vcenter.datacenter.memory.limit",
"vcenter.resource_pool.memory.swapped",
"vcenter.resource_pool.memory.ballooned", and
"vcenter.resource_pool.memory.granted". The
"resourcePoolMemoryUsageAttribute" has also been bumped up to release
v.0.107.0

- `googlemanagedprometheusexporter`: Fix typo in
`exporter.googlemanagedpromethues.intToDouble` feature gate
([#&#8203;34232](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/34232))

##### 🚩 Deprecations 🚩

- `k8sattributesprocessor`: Deprecate `extract.annotations.regex` and
`extract.labels.regex` config fields in favor of the `ExtractPatterns`
function in the transform processor. The `FieldExtractConfig.Regex`
parameter will be removed in version v0.111.0.
([#&#8203;25128](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/25128))
Deprecating of FieldExtractConfig.Regex parameter means that it is
recommended to use the `ExtractPatterns` function from the transform
processor instead. To convert your current configuration please check
the `ExtractPatterns` function
[documentation](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/tree/main/pkg/ottl/ottlfuncs#extractpatterns).
You should use the `pattern` parameter of `ExtractPatterns` instead of
using the `FieldExtractConfig.Regex` parameter.

##### 🚀 New components 🚀

- `otlpjsonconnector`: New component that will allow extracting otlpjson
data from incoming Logs.
([#&#8203;34239](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/34239),
[#&#8203;34208](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/34208))
- `redis_storage`: Adds a new storage extension using Redis to store
data in transit
([#&#8203;31682](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/31682))

##### 💡 Enhancements 💡

- `processor/transform`: Add `scale_metric` function that scales all
data points in a metric.
([#&#8203;16214](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/16214))

- `vcenterreceiver`: Adds vCenter vSAN host metrics.
([#&#8203;33556](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/33556))
    Introduces the following vSAN host metrics to the vCenter receiver:
    -   vcenter.host.vsan.throughput
    -   vcenter.host.vsan.iops
    -   vcenter.host.vsan.congestions
    -   vcenter.host.vsan.cache.hit_rate
    -   vcenter.host.vsan.latency.avg

- `transformprocessor`: Support aggregating metrics based on their
attributes.
([#&#8203;16224](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/16224))

- `metricstransformprocessor`: Adds the 'median' aggregation type to the
Metrics Transform Processor. Also uses the refactored aggregation
business logic from internal/core package.
([#&#8203;16224](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/16224))

- `telemetrygen`: uses the go logging SDK instead of pdata
([#&#8203;18902](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/18902))

- `elasticsearchexporter`: Add explicit bounds histogram support to
metrics
([#&#8203;34045](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/34045))

- `hostmetricsreceiver`: allow configuring log pipeline to send host
EntityState event
([#&#8203;33927](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/33927))

- `elasticsearchexporter`: Introduce an experimental OTel native mapping
mode for logs
([#&#8203;33290](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/33290))

- `extension/healthcheckv2`: Add extension/subcomponent management
logic.
([#&#8203;26661](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/26661))

- `otlpjsonconnector`: Add connector's implementations
([#&#8203;34249](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/34249),
[#&#8203;34208](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/34208))

- `windowsperfcountersreceiver`: Improve handling of non-existing
instances for Windows Performance Counters
([#&#8203;33815](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/33815))
It is an expected that when querying Windows Performance Counters the
targeted instances may not be present.
The receiver will no longer require the use of `recreate_query` to
handle non-existing instances.
As soon as the instances are available, the receiver will start
collecting metrics for them.
There won't be warning log messages when there are no matches for the
configured instances.

- `kafkareceiver`: Add settings session_timeout and heartbeat_interval
to Kafka Receiver for group management facilities
([#&#8203;28630](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28630))

- `otelarrowreceiver, otelarrowexporter`: OTel-Arrow internal packages
moved into this repository.
([#&#8203;33567](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/33567))
New integration testing between otelarrowexporter and otelarrowreceiver.

- `otlpjsonconnector`: Move connector's stability to alpha.
([#&#8203;34208](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/34208),
[#&#8203;34253](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/34253))

- `pkg/ottl`: Adds an `Format` function to OTTL that calls `fmt.Sprintf`
([#&#8203;33405](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/33405))

- `vcenterreceiver`: Adds a number of default disabled vSAN metrics for
Clusters.
([#&#8203;33556](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/33556))

- `vcenterreceiver`: Adds a number of default disabled vSAN metrics for
Virtual Machines.
([#&#8203;33556](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/33556))

##### 🧰 Bug fixes 🧰

- `clickhouseexporter`: Increase the default number of queue consumers
to 10
([#&#8203;34176](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/34176))
- `opencensusreceiver`: Do not report an error into resource status
during receiver shutdown when the listener connection was closed.
([#&#8203;33865](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/33865))
- `datadogconnector`: Produce stats for non-root client and producer
spans when `connector.datadogconnector.NativeIngest` and
`compute_top_level_by_span_kind` are enabled
([#&#8203;34197](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/34197))
You should have only run into this bug when ALL the conditions below are
met | 1. feature gate `connector.datadogconnector.NativeIngest` is
enabled | 2. config `compute_top_level_by_span_kind` is set to true | 3.
config `compute_stats_by_span_kind` is unset or set to false | 4. you
have child spans with client or producer span kind
- `datadogconnector`: Respect `_dd.measured` when
`connector.datadogconnector.NativeIngest` is enabled
([#&#8203;34197](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/34197))
Spans with attribute `_dd.measured` set to 1 will always get Datadog APM
stats
- `deltatocumulativeprocessor`: fix bucket counts when downscaling exp
histograms with odd offsets
([#&#8203;33831](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/33831))
- `otelarrowreceiver`: Fix potential goroutine leak when in
stream-shutdown.
([#&#8203;34236](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/34236))
- `otelarrowreceiver`: Eliminate one spurious span error.
([#&#8203;34175](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/34175))
- `pkg/ottl`: Handle JSON array provided to ParseJSON function
([#&#8203;33535](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/33535))
- `exporter/datadog`: Fixes a bug where
`otelcol_exporter_sent_log_records` was reporting double as many logs
sent when using the logs agent feature gate.
([#&#8203;33887](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/33887))
- `statsdeceiver`: Log only non-EOF errors when reading payload received
via TCP.
([#&#8203;33951](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/33951))
- `vcenterreceiver`: Adds destroys to the ContainerViews in the client.
([#&#8203;34254](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/34254))
This may not be necessary, but it should be better practice than not.

</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 this update
again.

---

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

---

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

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/DataDog/agent-payload/v5](https://togithub.com/DataDog/agent-payload)
| `v5.0.127` -> `v5.0.128` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDataDog%2fagent-payload%2fv5/v5.0.128?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fDataDog%2fagent-payload%2fv5/v5.0.128?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fDataDog%2fagent-payload%2fv5/v5.0.127/v5.0.128?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDataDog%2fagent-payload%2fv5/v5.0.127/v5.0.128?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>DataDog/agent-payload
(github.com/DataDog/agent-payload/v5)</summary>

###
[`v5.0.128`](https://togithub.com/DataDog/agent-payload/releases/tag/v5.0.128)

[Compare
Source](https://togithub.com/DataDog/agent-payload/compare/v5.0.127...v5.0.128)

#### What's Changed

- Add ECS Host and hostname and remove agentinfo from resources by
[@&#8203;aureleoules](https://togithub.com/aureleoules) in
[https://github.com/DataDog/agent-payload/pull/328](https://togithub.com/DataDog/agent-payload/pull/328)

**Full Changelog**:
DataDog/agent-payload@v5.0.127...v5.0.128

</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 this update
again.

---

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

---

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

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

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/Azure/azure-kusto-go](https://togithub.com/Azure/azure-kusto-go)
| `v0.16.0` -> `v0.16.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fAzure%2fazure-kusto-go/v0.16.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fAzure%2fazure-kusto-go/v0.16.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fAzure%2fazure-kusto-go/v0.16.0/v0.16.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fAzure%2fazure-kusto-go/v0.16.0/v0.16.1?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>Azure/azure-kusto-go
(github.com/Azure/azure-kusto-go)</summary>

###
[`v0.16.1`](https://togithub.com/Azure/azure-kusto-go/releases/tag/v0.16.1)

[Compare
Source](https://togithub.com/Azure/azure-kusto-go/compare/v0.16.0...v0.16.1)

##### Added

-   Added new valid endpoints for the Kusto service.

</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 this update
again.

---

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

---

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

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

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[cloud.google.com/go/spanner](https://togithub.com/googleapis/google-cloud-go)
| `v1.64.0` -> `v1.65.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/cloud.google.com%2fgo%2fspanner/v1.65.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/cloud.google.com%2fgo%2fspanner/v1.65.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/cloud.google.com%2fgo%2fspanner/v1.64.0/v1.65.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/cloud.google.com%2fgo%2fspanner/v1.64.0/v1.65.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

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

---

### 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 this update
again.

---

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

---

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

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

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
Co-authored-by: Yang Song <[email protected]>
**Description:** <Describe what has changed.>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
As discussed at
#34295,
error handling can be problematic in stanza package after the recent
changes at
#33847.
Specifically:
1. When
[`Write`](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/pkg/stanza/operator/helper/writer.go#L50)
is called in a for loop, a returned error should not break the for loop.
It should just be logged.
2. When
[`Process`](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/d78d7bb37d0c84da04ac8a83356eb669ecd75a95/pkg/stanza/operator/operator.go#L40)
is called in a for loop, a returned error should not break the for loop.
It should just be logged.

**Link to tracking Issue:** <Issue number if applicable>
#34295

**Testing:** <Describe what testing was performed and which tests were
added.> Added

**Documentation:** <Describe the documentation added.> ~

---------

Signed-off-by: ChrsMark <[email protected]>
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [github.com/redis/go-redis/v9](https://togithub.com/redis/go-redis) |
`v9.6.0` -> `v9.6.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fredis%2fgo-redis%2fv9/v9.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fredis%2fgo-redis%2fv9/v9.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fredis%2fgo-redis%2fv9/v9.6.0/v9.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fredis%2fgo-redis%2fv9/v9.6.0/v9.6.1?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>redis/go-redis (github.com/redis/go-redis/v9)</summary>

### [`v9.6.1`](https://togithub.com/redis/go-redis/releases/tag/v9.6.1):
9.6.1

[Compare
Source](https://togithub.com/redis/go-redis/compare/v9.6.0...v9.6.1)

### Changes

#### 9.6

This release contains all new features from version 9.6.

##### 🚀 New Features

- Support Hash-field expiration commands
([#&#8203;2991](https://togithub.com/redis/go-redis/issues/2991))
- Support Hash-field expiration commands in Pipeline & Fix HExpire
HExpireWithArgs expiration
([#&#8203;3038](https://togithub.com/redis/go-redis/issues/3038))
- Support NOVALUES parameter for HSCAN
([#&#8203;2925](https://togithub.com/redis/go-redis/issues/2925))
- Added test case for CLIENT KILL with MAXAGE option
([#&#8203;2971](https://togithub.com/redis/go-redis/issues/2971))
- Add support for XREAD last entry
([#&#8203;3005](https://togithub.com/redis/go-redis/issues/3005))
- Reduce the type assertion of CheckConn
([#&#8203;3066](https://togithub.com/redis/go-redis/issues/3066))

#### 9.6.1

In addition minor changes were performed to retract version 9.5.3 and
9.5.4 that were released accidentally.

##### 🧰 Maintenance

- Change CI to 7.4.0-RC2
([#&#8203;3070](https://togithub.com/redis/go-redis/issues/3070))

##### 🎁 Package Distribution

- Retract versions 9.5.3 and 9.5.4
([#&#8203;3069](https://togithub.com/redis/go-redis/issues/3069))

#### Contributors

We'd like to thank all the contributors who worked on this release!

[@&#8203;LINKIWI](https://togithub.com/LINKIWI),
[@&#8203;b1ron](https://togithub.com/b1ron),
[@&#8203;gerzse](https://togithub.com/gerzse),
[@&#8203;haines](https://togithub.com/haines),
[@&#8203;immersedin](https://togithub.com/immersedin),
[@&#8203;naiqianz](https://togithub.com/naiqianz),
[@&#8203;ofekshenawa](https://togithub.com/ofekshenawa),
[@&#8203;srikar-jilugu](https://togithub.com/srikar-jilugu),
[@&#8203;tzongw](https://togithub.com/tzongw),
[@&#8203;vladvildanov](https://togithub.com/vladvildanov),
[@&#8203;vmihailenco](https://togithub.com/vmihailenco) and
[@&#8203;monkey92t](https://togithub.com/monkey92t)

</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 this update
again.

---

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

---

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

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

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
Co-authored-by: Alex Boten <[email protected]>
**Description:**
Add @jaronoff97 to the codeowners of the remotetap processor.
…d/common to v1.0.974 (#34305)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common](https://togithub.com/tencentcloud/tencentcloud-sdk-go)
| `v1.0.969` -> `v1.0.974` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2ftencentcloud%2ftencentcloud-sdk-go%2ftencentcloud%2fcommon/v1.0.974?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2ftencentcloud%2ftencentcloud-sdk-go%2ftencentcloud%2fcommon/v1.0.974?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2ftencentcloud%2ftencentcloud-sdk-go%2ftencentcloud%2fcommon/v1.0.969/v1.0.974?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2ftencentcloud%2ftencentcloud-sdk-go%2ftencentcloud%2fcommon/v1.0.969/v1.0.974?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>tencentcloud/tencentcloud-sdk-go
(github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common)</summary>

###
[`v1.0.974`](https://togithub.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v10974)

[Compare
Source](https://togithub.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.973...v1.0.974)

#### 云防火墙(cfw) 版本:2019-09-04

##### 第 61 次发布

发布时间:2024-07-30 01:19:22

本次发布包含了以下内容:

改善已有的文档。

修改数据结构:

-
[DescAcItem](https://cloud.tencent.com/document/api/1132/49071#DescAcItem)

    -   新增成员:LastHitTime

#### 日志服务(cls) 版本:2020-10-16

##### 第 101 次发布

发布时间:2024-07-30 01:22:32

本次发布包含了以下内容:

改善已有的文档。

修改数据结构:

-
[DataTransformTaskInfo](https://cloud.tencent.com/document/api/614/56471#DataTransformTaskInfo)

    -   新增成员:DataTransformType

#### 云安全一体化平台(csip) 版本:2022-11-21

##### 第 42 次发布

发布时间:2024-07-30 01:24:16

本次发布包含了以下内容:

改善已有的文档。

新增接口:

-
[DescribeCFWAssetStatistics](https://cloud.tencent.com/document/api/664/109405)

#### 主机安全(cwp) 版本:2018-02-28

##### 第 118 次发布

发布时间:2024-07-30 01:25:44

本次发布包含了以下内容:

改善已有的文档。

修改数据结构:

-
[BashEvent](https://cloud.tencent.com/document/api/296/19867#BashEvent)

    -   新增成员:HostName

-
[BashEventsInfo](https://cloud.tencent.com/document/api/296/19867#BashEventsInfo)

    -   新增成员:DetectBy

#### 实时音视频(trtc) 版本:2019-07-22

##### 第 83 次发布

发布时间:2024-07-30 02:22:25

本次发布包含了以下内容:

改善已有的文档。

新增接口:

-
[ControlAIConversation](https://cloud.tencent.com/document/api/647/109408)

新增数据结构:

-
[ServerPushText](https://cloud.tencent.com/document/api/647/44055#ServerPushText)

###
[`v1.0.973`](https://togithub.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v10973)

[Compare
Source](https://togithub.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.972...v1.0.973)

#### 混沌演练平台(cfg) 版本:2021-08-20

##### 第 16 次发布

发布时间:2024-07-26 14:53:06

本次发布包含了以下内容:

改善已有的文档。

新增接口:

-
[CreateTaskFromAction](https://cloud.tencent.com/document/api/1500/109362)
-
[DescribeActionFieldConfigList](https://cloud.tencent.com/document/api/1500/109361)
-
[DescribeActionLibraryList](https://cloud.tencent.com/document/api/1500/109360)
-
[DescribeObjectTypeList](https://cloud.tencent.com/document/api/1500/109359)

新增数据结构:

-
[ActionFieldConfigDetail](https://cloud.tencent.com/document/api/1500/71784#ActionFieldConfigDetail)
-
[ActionFieldConfigResult](https://cloud.tencent.com/document/api/1500/71784#ActionFieldConfigResult)
-
[ActionLibraryListResult](https://cloud.tencent.com/document/api/1500/71784#ActionLibraryListResult)
-
[ObjectType](https://cloud.tencent.com/document/api/1500/71784#ObjectType)
-
[ObjectTypeConfig](https://cloud.tencent.com/document/api/1500/71784#ObjectTypeConfig)
-
[ObjectTypeConfigFields](https://cloud.tencent.com/document/api/1500/71784#ObjectTypeConfigFields)
-
[ObjectTypeJsonParse](https://cloud.tencent.com/document/api/1500/71784#ObjectTypeJsonParse)
-
[ResourceOffline](https://cloud.tencent.com/document/api/1500/71784#ResourceOffline)

#### 多媒体创作引擎(cme) 版本:2019-10-29

##### 第 58 次发布

发布时间:2024-07-29 01:23:21

本次发布包含了以下内容:

改善已有的文档。

修改数据结构:

-
[VideoEditProjectOutput](https://cloud.tencent.com/document/api/1156/40360#VideoEditProjectOutput)

    -   <font color="#dd0000">**修改成员**:</font>CoverURL

#### 腾讯电子签(基础版)(essbasic) 版本:2021-05-26

##### 第 176 次发布

发布时间:2024-07-29 01:41:10

本次发布包含了以下内容:

改善已有的文档。

修改接口:

-
[CreatePartnerAutoSignAuthUrl](https://cloud.tencent.com/document/api/1420/102515)

    -   新增入参:AuthToMe

#### 腾讯电子签(基础版)(essbasic) 版本:2020-12-22

#### 实时互动-教育版(lcic) 版本:2022-08-17

##### 第 58 次发布

发布时间:2024-07-29 01:51:41

本次发布包含了以下内容:

改善已有的文档。

新增接口:

-
[UnblockKickedUser](https://cloud.tencent.com/document/api/1639/109376)

#### 文字识别(ocr) 版本:2018-11-19

##### 第 144 次发布

发布时间:2024-07-29 02:00:34

本次发布包含了以下内容:

改善已有的文档。

修改接口:

-
[VerifyOfdVatInvoiceOCR](https://cloud.tencent.com/document/api/866/52296)

    -   新增出参:InvoiceTitle

#### 大模型视频创作引擎(vclm) 版本:2024-05-23

##### 第 4 次发布

发布时间:2024-07-29 02:25:41

本次发布包含了以下内容:

改善已有的文档。

新增接口:

-
[DescribePortraitSingJob](https://cloud.tencent.com/document/api/1616/109379)
-
[SubmitPortraitSingJob](https://cloud.tencent.com/document/api/1616/109378)

###
[`v1.0.972`](https://togithub.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v10972)

[Compare
Source](https://togithub.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.971...v1.0.972)

#### 音频内容安全(ams) 版本:2020-12-29

##### 第 11 次发布

发布时间:2024-07-26 01:08:05

本次发布包含了以下内容:

改善已有的文档。

修改接口:

-
[DescribeTaskDetail](https://cloud.tencent.com/document/api/1219/53256)

    -   新增出参:MediaInfo

新增数据结构:

-
[LabelResults](https://cloud.tencent.com/document/api/1219/53259#LabelResults)
-
[SpeakerResults](https://cloud.tencent.com/document/api/1219/53259#SpeakerResults)
-
[TravelResults](https://cloud.tencent.com/document/api/1219/53259#TravelResults)

修改数据结构:

-
[AudioResult](https://cloud.tencent.com/document/api/1219/53259#AudioResult)

    -   新增成员:SpeakerResults, LabelResults, TravelResults

-
[AudioResultDetailMoanResult](https://cloud.tencent.com/document/api/1219/53259#AudioResultDetailMoanResult)

-
[AudioSegments](https://cloud.tencent.com/document/api/1219/53259#AudioSegments)

    -   新增成员:CreatedAt

- [TaskData](https://cloud.tencent.com/document/api/1219/53259#TaskData)

    -   新增成员:InputInfo

#### 音频内容安全(ams) 版本:2020-06-08

#### 云拨测(cat) 版本:2018-04-09

##### 第 18 次发布

发布时间:2024-07-26 01:15:04

本次发布包含了以下内容:

改善已有的文档。

修改接口:

-   [CreateProbeTasks](https://cloud.tencent.com/document/api/280/66213)

    -   新增入参:SubSyncFlag

#### 云数据库 MySQL(cdb) 版本:2017-03-20

##### 第 162 次发布

发布时间:2024-07-26 01:16:06

本次发布包含了以下内容:

改善已有的文档。

修改接口:

-
[CreateCloneInstance](https://cloud.tencent.com/document/api/236/50424)

    -   新增入参:ClusterTopology

-   [CreateDBInstance](https://cloud.tencent.com/document/api/236/15871)

    -   新增入参:ClusterTopology

-
[CreateDBInstanceHour](https://cloud.tencent.com/document/api/236/15865)

    -   新增入参:ClusterTopology

#### 内容分发网络 CDN(cdn) 版本:2018-06-06

##### 第 128 次发布

发布时间:2024-07-26 01:17:46

本次发布包含了以下内容:

改善已有的文档。

修改接口:

- [UpdateDomainConfig](https://cloud.tencent.com/document/api/228/41116)

    -   新增入参:ParamFilter

新增数据结构:

-
[ParamFilter](https://cloud.tencent.com/document/api/228/30987#ParamFilter)
-
[ParamFilterRule](https://cloud.tencent.com/document/api/228/30987#ParamFilterRule)

修改数据结构:

-
[DetailDomain](https://cloud.tencent.com/document/api/228/30987#DetailDomain)

    -   新增成员:ParamFilter

#### 云防火墙(cfw) 版本:2019-09-04

##### 第 60 次发布

发布时间:2024-07-26 01:19:51

本次发布包含了以下内容:

改善已有的文档。

新增接口:

-
[DescribeNatFwDnatRule](https://cloud.tencent.com/document/api/1132/109336)

新增数据结构:

-
[DescNatDnatRule](https://cloud.tencent.com/document/api/1132/49071#DescNatDnatRule)

修改数据结构:

-
[VpcFwGroupInfo](https://cloud.tencent.com/document/api/1132/49071#VpcFwGroupInfo)

    -   新增成员:NeedSwitchCcnOverlap, CcnId

#### TDSQL-C MySQL 版(cynosdb) 版本:2019-01-07

##### 第 98 次发布

发布时间:2024-07-26 01:29:47

本次发布包含了以下内容:

改善已有的文档。

修改接口:

-
[CreateCLSDelivery](https://cloud.tencent.com/document/api/1003/106079)

    -   新增入参:LogType, IsInMaintainPeriod

-
[DeleteCLSDelivery](https://cloud.tencent.com/document/api/1003/106078)

    -   新增入参:LogType, IsInMaintainPeriod

-
[DescribeInstanceCLSLogDelivery](https://cloud.tencent.com/document/api/1003/106077)

    -   新增入参:LogType

- [StartCLSDelivery](https://cloud.tencent.com/document/api/1003/106076)

    -   新增入参:LogType, IsInMaintainPeriod

- [StopCLSDelivery](https://cloud.tencent.com/document/api/1003/106075)

    -   新增入参:LogType, IsInMaintainPeriod

修改数据结构:

-
[InstanceCLSDeliveryInfo](https://cloud.tencent.com/document/api/1003/48097#InstanceCLSDeliveryInfo)

    -   新增成员:LogType

#### 边缘计算机器(ecm) 版本:2019-07-19

##### 第 75 次发布

发布时间:2024-07-26 01:38:19

本次发布包含了以下内容:

改善已有的文档。

修改接口:

-
[ModifyVpcAttribute](https://cloud.tencent.com/document/api/1108/43567)

    -   新增入参:DnsServers, DomainName

#### 弹性 MapReduce(emr) 版本:2019-01-03

##### 第 69 次发布

发布时间:2024-07-25 14:51:25

本次发布包含了以下内容:

改善已有的文档。

新增接口:

-
[DescribeTrinoQueryInfo](https://cloud.tencent.com/document/api/589/109323)

修改接口:

-
[InquiryPriceRenewInstance](https://cloud.tencent.com/document/api/589/38064)

    -   <font color="#dd0000">**修改入参**:</font>Placement

-
[InquiryPriceUpdateInstance](https://cloud.tencent.com/document/api/589/38063)

    -   <font color="#dd0000">**修改入参**:</font>UpdateSpec, Placement

    -   新增出参:NewConfigPrice

新增数据结构:

-
[PriceResult](https://cloud.tencent.com/document/api/589/33981#PriceResult)
-
[TrinoQueryInfo](https://cloud.tencent.com/document/api/589/33981#TrinoQueryInfo)

<font color="#dd0000">**删除数据结构**:</font>

-   TriggerConditions

修改数据结构:

-
[LoadAutoScaleStrategy](https://cloud.tencent.com/document/api/589/33981#LoadAutoScaleStrategy)

- <font color="#dd0000">**删除成员**:</font>LoadMetrics, MetricId,
StatisticPeriod, TriggerThreshold, TriggerConditions

#### 腾讯混元大模型(hunyuan) 版本:2023-09-01

##### 第 14 次发布

发布时间:2024-07-26 01:44:41

本次发布包含了以下内容:

改善已有的文档。

修改接口:

-
[SubmitHunyuanImageJob](https://cloud.tencent.com/document/api/1729/105969)

    -   新增入参:Num, Seed, LogoParam

- [TextToImageLite](https://cloud.tencent.com/document/api/1729/108738)

    -   新增入参:LogoParam

新增数据结构:

-
[LogoParam](https://cloud.tencent.com/document/api/1729/101838#LogoParam)
-
[LogoRect](https://cloud.tencent.com/document/api/1729/101838#LogoRect)

#### 容器服务(tke) 版本:2022-05-01

#### 容器服务(tke) 版本:2018-05-25

##### 第 176 次发布

发布时间:2024-07-26 02:19:58

本次发布包含了以下内容:

改善已有的文档。

新增接口:

-
[DescribeReservedInstanceUtilizationRate](https://cloud.tencent.com/document/api/457/109337)

新增数据结构:

-
[ReservedInstanceUtilizationRate](https://cloud.tencent.com/document/api/457/31866#ReservedInstanceUtilizationRate)

#### 视频内容安全(vm) 版本:2021-09-22

#### 视频内容安全(vm) 版本:2020-12-29

##### 第 8 次发布

发布时间:2024-07-26 02:26:27

本次发布包含了以下内容:

改善已有的文档。

修改接口:

-
[DescribeTaskDetail](https://cloud.tencent.com/document/api/1265/51878)

    -   新增出参:SegmentCosUrlList, AudioText, TryInSeconds, Asrs

新增数据结构:

-   [RcbAsr](https://cloud.tencent.com/document/api/1265/51881#RcbAsr)
-
[SegmentCosUrlList](https://cloud.tencent.com/document/api/1265/51881#SegmentCosUrlList)

修改数据结构:

-
[ImageResult](https://cloud.tencent.com/document/api/1265/51881#ImageResult)

    -   新增成员:RecognitionResults

-
[ImageResultsResultDetail](https://cloud.tencent.com/document/api/1265/51881#ImageResultsResultDetail)

    -   新增成员:SubLabel

-
[ImageSegments](https://cloud.tencent.com/document/api/1265/51881#ImageSegments)

    -   新增成员:CreatedAt, OffsetusTime

#### 视频内容安全(vm) 版本:2020-07-09

###
[`v1.0.971`](https://togithub.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v10971)

[Compare
Source](https://togithub.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.970...v1.0.971)

#### 云防火墙(cfw) 版本:2019-09-04

##### 第 59 次发布

发布时间:2024-07-25 01:19:29

本次发布包含了以下内容:

改善已有的文档。

修改接口:

-
[DescribeAddressTemplateList](https://cloud.tencent.com/document/api/1132/97918)

    -   新增出参:UsedTemplateCount, TemplateQuotaCount

-   [DescribeLogs](https://cloud.tencent.com/document/api/1132/91646)

    -   新增出参:AppProtocolList

#### 日志服务(cls) 版本:2020-10-16

##### 第 100 次发布

发布时间:2024-07-25 01:22:39

本次发布包含了以下内容:

改善已有的文档。

修改接口:

-   [UploadLog](https://cloud.tencent.com/document/api/614/59470)

#### 数据库智能管家 DBbrain(dbbrain) 版本:2021-05-27

##### 第 30 次发布

发布时间:2024-07-25 01:31:31

本次发布包含了以下内容:

改善已有的文档。

修改接口:

-   [CreateKillTask](https://cloud.tencent.com/document/api/1130/67783)

    -   新增入参:Infos

#### 数据库智能管家 DBbrain(dbbrain) 版本:2019-10-16

#### 腾讯电子签企业版(ess) 版本:2020-11-11

##### 第 181 次发布

发布时间:2024-07-25 01:39:56

本次发布包含了以下内容:

改善已有的文档。

修改接口:

-
[CreatePartnerAutoSignAuthUrl](https://cloud.tencent.com/document/api/1323/109065)

    -   新增入参:AuthorizedOrganizationName, AuthToMe

#### 云数据库 MongoDB(mongodb) 版本:2019-07-25

##### 第 44 次发布

发布时间:2024-07-25 01:56:02

本次发布包含了以下内容:

改善已有的文档。

新增接口:

-   [RestartNodes](https://cloud.tencent.com/document/api/240/109311)

修改接口:

-   [CreateDBInstance](https://cloud.tencent.com/document/api/240/38571)

    -   新增入参:ParamTemplateId

-
[CreateDBInstanceHour](https://cloud.tencent.com/document/api/240/38570)

    -   新增入参:ParamTemplateId

#### 云数据库 MongoDB(mongodb) 版本:2018-04-08

#### 文字识别(ocr) 版本:2018-11-19

##### 第 143 次发布

发布时间:2024-07-25 02:00:21

本次发布包含了以下内容:

改善已有的文档。

修改接口:

-   [PermitOCR](https://cloud.tencent.com/document/api/866/37074)

    -   新增入参:CropPortrait

    -   新增出参:PortraitImage

#### 数据开发治理平台 WeData(wedata) 版本:2021-08-20

##### 第 101 次发布

发布时间:2024-07-25 02:32:09

本次发布包含了以下内容:

改善已有的文档。

修改数据结构:

-
[OrganizationalFunction](https://cloud.tencent.com/document/api/1267/76336#OrganizationalFunction)

    -   新增成员:EnvType

###
[`v1.0.970`](https://togithub.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v10970)

[Compare
Source](https://togithub.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.969...v1.0.970)

#### 访问管理(cam) 版本:2019-01-16

##### 第 60 次发布

发布时间:2024-07-24 01:13:41

本次发布包含了以下内容:

改善已有的文档。

修改数据结构:

- [RoleInfo](https://cloud.tencent.com/document/api/598/33167#RoleInfo)

    -   新增成员:RoleArn

#### 腾讯云数据仓库TCHouse-C(cdwch) 版本:2020-09-15

##### 第 22 次发布

发布时间:2024-07-24 01:18:03

本次发布包含了以下内容:

改善已有的文档。

新增数据结构:

-
[InstanceDetail](https://cloud.tencent.com/document/api/1299/83429#InstanceDetail)

修改数据结构:

-
[InstanceInfo](https://cloud.tencent.com/document/api/1299/83429#InstanceInfo)

    -   新增成员:Details

#### 腾讯云数据仓库 TCHouse-D(cdwdoris) 版本:2021-12-28

##### 第 14 次发布

发布时间:2024-07-24 01:18:18

本次发布包含了以下内容:

改善已有的文档。

新增数据结构:

-
[InstanceDetail](https://cloud.tencent.com/document/api/1387/102385#InstanceDetail)

修改数据结构:

-
[InstanceInfo](https://cloud.tencent.com/document/api/1387/102385#InstanceInfo)

    -   新增成员:Details

#### 数据传输服务(dts) 版本:2021-12-06

##### 第 31 次发布

发布时间:2024-07-24 01:36:02

本次发布包含了以下内容:

改善已有的文档。

修改接口:

-   [StopCompare](https://cloud.tencent.com/document/api/571/82072)

    -   新增入参:ForceStop

#### 数据传输服务(dts) 版本:2018-03-30

#### 云数据库 MongoDB(mongodb) 版本:2019-07-25

##### 第 43 次发布

发布时间:2024-07-24 01:54:54

本次发布包含了以下内容:

改善已有的文档。

新增接口:

-
[CreateDBInstanceParamTpl](https://cloud.tencent.com/document/api/240/109156)
-
[DescribeDBInstanceParamTpl](https://cloud.tencent.com/document/api/240/109155)
-
[DescribeDBInstanceParamTplDetail](https://cloud.tencent.com/document/api/240/109154)
-
[DropDBInstanceParamTpl](https://cloud.tencent.com/document/api/240/109153)
-
[ModifyDBInstanceParamTpl](https://cloud.tencent.com/document/api/240/109152)

新增数据结构:

- [ParamTpl](https://cloud.tencent.com/document/api/240/38576#ParamTpl)
-
[ParamType](https://cloud.tencent.com/document/api/240/38576#ParamType)

#### 云数据库 MongoDB(mongodb) 版本:2018-04-08

#### 弹性微服务(tem) 版本:2021-07-01

##### 第 43 次发布

发布时间:2024-07-24 02:14:59

本次发布包含了以下内容:

改善已有的文档。

修改接口:

- [DeployApplication](https://cloud.tencent.com/document/api/1371/60158)

    -   新增入参:PostStartEncoded, PreStopEncoded

#### 弹性微服务(tem) 版本:2020-12-21

#### 高性能计算平台(thpc) 版本:2023-03-21

##### 第 16 次发布

发布时间:2024-07-24 02:16:49

本次发布包含了以下内容:

改善已有的文档。

新增接口:

-   [AttachNodes](https://cloud.tencent.com/document/api/1527/109158)
-   [DetachNodes](https://cloud.tencent.com/document/api/1527/109157)

修改接口:

-   [AddNodes](https://cloud.tencent.com/document/api/1527/89571)

    -   新增入参:ResourceType

修改数据结构:

-
[ComputeNode](https://cloud.tencent.com/document/api/1527/89579#ComputeNode)

    -   新增成员:ResourceType

-
[NodeOverview](https://cloud.tencent.com/document/api/1527/89579#NodeOverview)

    -   新增成员:NodeId

- <font color="#dd0000">**修改成员**:</font>InstanceId, Zone, NodeState,
ImageId, QueueName, NodeRole, NodeType

#### 高性能计算平台(thpc) 版本:2022-04-01

#### 高性能计算平台(thpc) 版本:2021-11-09

#### 容器服务(tke) 版本:2022-05-01

##### 第 3 次发布

发布时间:2024-07-24 02:19:34

本次发布包含了以下内容:

改善已有的文档。

修改数据结构:

-
[NativeNodePoolInfo](https://cloud.tencent.com/document/api/457/103206#NativeNodePoolInfo)

    -   新增成员:ReadyReplicas

#### 容器服务(tke) 版本:2018-05-25

#### 大模型视频创作引擎(vclm) 版本:2024-05-23

##### 第 3 次发布

发布时间:2024-07-24 02:24:15

本次发布包含了以下内容:

改善已有的文档。

修改接口:

-
[SubmitVideoStylizationJob](https://cloud.tencent.com/document/api/1616/107802)

    -   新增入参:StyleStrength

#### 私有网络(vpc) 版本:2017-03-12

##### 第 197 次发布

发布时间:2024-07-24 02:26:47

本次发布包含了以下内容:

改善已有的文档。

修改接口:

-
[ModifyVpnGatewayAttribute](https://cloud.tencent.com/document/api/215/17507)

    -   新增入参:MaxConnection

修改数据结构:

-   [CCN](https://cloud.tencent.com/document/api/215/15824#CCN)

- 新增成员:RouteECMPFlag, RouteOverlapFlag, TrafficMarkingPolicyFlag,
RouteSelectPolicyFlag, DirectConnectAccelerateChannelFlag

- <font color="#dd0000">**修改成员**:</font>CcnId, CcnName, CcnDescription,
InstanceCount, CreateTime, State, QosLevel, InstanceChargeType,
BandwidthLimitType, TagSet, RoutePriorityFlag, RouteTableCount,
RouteTableFlag, IsSecurityLock, RouteBroadcastPolicyFlag

#### 数据开发治理平台 WeData(wedata) 版本:2021-08-20

##### 第 100 次发布

发布时间:2024-07-24 02:30:53

本次发布包含了以下内容:

改善已有的文档。

修改接口:

-
[DescribeOrganizationalFunctions](https://cloud.tencent.com/document/api/1267/81482)

    -   新增入参:Filters, OrderFields

-
[DescribeTableSchemaInfo](https://cloud.tencent.com/document/api/1267/82542)

    -   新增入参:ProjectId

修改数据结构:

-
[RuleGroupExecStrategy](https://cloud.tencent.com/document/api/1267/76336#RuleGroupExecStrategy)

    -   新增成员:DlcGroupName

</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 this update
again.

---

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

---

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

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

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
Co-authored-by: Alex Boten <[email protected]>
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [github.com/tidwall/gjson](https://togithub.com/tidwall/gjson) |
`v1.17.1` -> `v1.17.3` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2ftidwall%2fgjson/v1.17.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2ftidwall%2fgjson/v1.17.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2ftidwall%2fgjson/v1.17.1/v1.17.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2ftidwall%2fgjson/v1.17.1/v1.17.3?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>tidwall/gjson (github.com/tidwall/gjson)</summary>

###
[`v1.17.3`](https://togithub.com/tidwall/gjson/compare/v1.17.2...v1.17.3)

[Compare
Source](https://togithub.com/tidwall/gjson/compare/v1.17.2...v1.17.3)

###
[`v1.17.2`](https://togithub.com/tidwall/gjson/compare/v1.17.1...v1.17.2)

[Compare
Source](https://togithub.com/tidwall/gjson/compare/v1.17.1...v1.17.2)

</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 this update
again.

---

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

---

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

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

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
Co-authored-by: Alex Boten <[email protected]>
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/elastic/go-structform](https://togithub.com/elastic/go-structform)
| `v0.0.10` -> `v0.0.11` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2felastic%2fgo-structform/v0.0.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2felastic%2fgo-structform/v0.0.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2felastic%2fgo-structform/v0.0.10/v0.0.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2felastic%2fgo-structform/v0.0.10/v0.0.11?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>elastic/go-structform
(github.com/elastic/go-structform)</summary>

###
[`v0.0.11`](https://togithub.com/elastic/go-structform/releases/tag/v0.0.11):
0.0.11

[Compare
Source](https://togithub.com/elastic/go-structform/compare/v0.0.10...v0.0.11)

##### Fixed

- fix: register reFoldFn for types that derive from primitives by
[@&#8203;pkoutsovasilis](https://togithub.com/pkoutsovasilis) in
[https://github.com/elastic/go-structform/pull/46](https://togithub.com/elastic/go-structform/pull/46)

**Full Changelog**:
elastic/go-structform@v0.0.10...v0.0.11

</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 this update
again.

---

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

---

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

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

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
Co-authored-by: Yang Song <[email protected]>
**Description:**
See open-telemetry/opentelemetry-collector#10717
as the original PR for this issue.

This change removes the dependency of k8sclusterreceiver tests on
nopHost, which will no longer support GetExporters in the future.
**Description:**

* FNV is a non-cryptographic hash function, which makes it inadequate to
replace cryptographic hash functions like SHA-1.
* SHA-256 is still a recommended hash function by NIST. I've added a
link to the official list of recommended hash functions as a citation.
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/knadh/koanf/providers/file](https://togithub.com/knadh/koanf)
| `v1.0.0` -> `v1.1.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fknadh%2fkoanf%2fproviders%2ffile/v1.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fknadh%2fkoanf%2fproviders%2ffile/v1.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fknadh%2fkoanf%2fproviders%2ffile/v1.0.0/v1.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fknadh%2fkoanf%2fproviders%2ffile/v1.0.0/v1.1.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>knadh/koanf (github.com/knadh/koanf/providers/file)</summary>

### [`v1.1.0`](https://togithub.com/knadh/koanf/releases/tag/v1.1.0)

[Compare
Source](https://togithub.com/knadh/koanf/compare/v1.0.0...v1.1.0)

- [`036e4bf`](https://togithub.com/knadh/koanf/commit/036e4bf) Merge
pull request [#&#8203;79](https://togithub.com/knadh/koanf/issues/79)
from aeneasr/fix-memory-keyparts
- [`6692d05`](https://togithub.com/knadh/koanf/commit/6692d05) Merge
pull request [#&#8203;78](https://togithub.com/knadh/koanf/issues/78)
from aeneasr/fix-memory-use
- [`d174d00`](https://togithub.com/knadh/koanf/commit/d174d00) Reduce
memory consumption for populateKeyParts
- [`1095e5e`](https://togithub.com/knadh/koanf/commit/1095e5e)
Significantly reduce memory use of maps.Flatten
- [`7d983f3`](https://togithub.com/knadh/koanf/commit/7d983f3) Fix
Watch() doc

</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 this update
again.

---

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

---

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

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

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
Co-authored-by: Alex Boten <[email protected]>
…34316)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/grpc-ecosystem/grpc-gateway/v2](https://togithub.com/grpc-ecosystem/grpc-gateway)
| `v2.20.0` -> `v2.21.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.20.0/v2.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.20.0/v2.21.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>grpc-ecosystem/grpc-gateway
(github.com/grpc-ecosystem/grpc-gateway/v2)</summary>

###
[`v2.21.0`](https://togithub.com/grpc-ecosystem/grpc-gateway/releases/tag/v2.21.0)

[Compare
Source](https://togithub.com/grpc-ecosystem/grpc-gateway/compare/v2.20.0...v2.21.0)

#### What's Changed

- feat: Use version info from runtime/debug:BuildInfo when installed by
go build by [@&#8203;MakDon](https://togithub.com/MakDon) in
[https://github.com/grpc-ecosystem/grpc-gateway/pull/4359](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4359)
- feat: add mux middlewares and inject http pattern by
[@&#8203;nikitaksv](https://togithub.com/nikitaksv) in
[https://github.com/grpc-ecosystem/grpc-gateway/pull/4290](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4290)
- Fixes
[#&#8203;3917](https://togithub.com/grpc-ecosystem/grpc-gateway/issues/3917):
Add package openapi naming strategy. by
[@&#8203;jgiles](https://togithub.com/jgiles) in
[https://github.com/grpc-ecosystem/grpc-gateway/pull/4372](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4372)
- feat: use buildInfo.Main.Version as version when installed by go
install by [@&#8203;MakDon](https://togithub.com/MakDon) in
[https://github.com/grpc-ecosystem/grpc-gateway/pull/4390](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4390)
- Add support for method's deprecated option by
[@&#8203;vajexal](https://togithub.com/vajexal) in
[https://github.com/grpc-ecosystem/grpc-gateway/pull/4373](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4373)
- adding gRPC gateway generator script by
[@&#8203;akoserwal](https://togithub.com/akoserwal) in
[https://github.com/grpc-ecosystem/grpc-gateway/pull/4426](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4426)
- fix url gen-grpc-gateway-api by
[@&#8203;akoserwal](https://togithub.com/akoserwal) in
[https://github.com/grpc-ecosystem/grpc-gateway/pull/4434](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4434)
- ci: upgrade to goreleaser v2 by
[@&#8203;johanbrandhorst](https://togithub.com/johanbrandhorst) in
[https://github.com/grpc-ecosystem/grpc-gateway/pull/4437](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4437)
- docs: add grpc-starter transcoding to related projects by
[@&#8203;DanielLiu1123](https://togithub.com/DanielLiu1123) in
[https://github.com/grpc-ecosystem/grpc-gateway/pull/4456](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4456)
- Fix build on 32bit systems by
[@&#8203;gibmat](https://togithub.com/gibmat) in
[https://github.com/grpc-ecosystem/grpc-gateway/pull/4557](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4557)

#### New Contributors

- [@&#8203;nikitaksv](https://togithub.com/nikitaksv) made their first
contribution in
[https://github.com/grpc-ecosystem/grpc-gateway/pull/4290](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4290)
- [@&#8203;vajexal](https://togithub.com/vajexal) made their first
contribution in
[https://github.com/grpc-ecosystem/grpc-gateway/pull/4373](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4373)
- [@&#8203;akoserwal](https://togithub.com/akoserwal) made their first
contribution in
[https://github.com/grpc-ecosystem/grpc-gateway/pull/4426](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4426)
- [@&#8203;DanielLiu1123](https://togithub.com/DanielLiu1123) made their
first contribution in
[https://github.com/grpc-ecosystem/grpc-gateway/pull/4456](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4456)
- [@&#8203;gibmat](https://togithub.com/gibmat) made their first
contribution in
[https://github.com/grpc-ecosystem/grpc-gateway/pull/4557](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4557)

**Full Changelog**:
grpc-ecosystem/grpc-gateway@v2.20.0...v2.21.0

</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 this update
again.

---

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

---

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

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

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
Co-authored-by: Alex Boten <[email protected]>
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/solarwindscloud/apm-proto](https://togithub.com/solarwindscloud/apm-proto)
| `v1.0.5` -> `v1.0.6` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fsolarwindscloud%2fapm-proto/v1.0.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fsolarwindscloud%2fapm-proto/v1.0.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fsolarwindscloud%2fapm-proto/v1.0.5/v1.0.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fsolarwindscloud%2fapm-proto/v1.0.5/v1.0.6?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>solarwindscloud/apm-proto
(github.com/solarwindscloud/apm-proto)</summary>

###
[`v1.0.6`](https://togithub.com/solarwinds/apm-proto/releases/tag/v1.0.6):
apm-proto v1.0.6

[Compare
Source](https://togithub.com/solarwindscloud/apm-proto/compare/v1.0.5...v1.0.6)

</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 this update
again.

---

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

---

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

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

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
Co-authored-by: Yang Song <[email protected]>
…#34371)

**Description:**
Change the translation to jaeger spans to match semantic conventions.

`otel.library.name` is deprecated and replaced by `otel.scope.name`
`otel.library.version` is deprecated and replaced by
`otel.scope.version`

**Link to tracking Issue:**
Fixes #34368
They are no longer generated by mdatagen and are not yet needed by many
components in contrib.

---------

Signed-off-by: Alex Boten <[email protected]>
Annotations and labels extraction is possible from nodes as well after
#28570.
Fixing a missing doc string
**Description:** 
The original guide to become an OpenTelemetry community member was
moved, this fixes the link to point to the proper location.

[PR moving the
file](open-telemetry/community#2051)
Small golang fix to use a `var` declaration rather than initializing an
empty slice.
…vailable (#34159)

**Description:** <Describe what has changed.>
* If the OpAMP server can't be contacted, the supervisor should still be
run
* This PR also fixes #33799 (as it removes the channel that is blocked
on, prevent the reconnect)

This PR supercedes #33275

**Link to tracking Issue:** Fixes #33408, #33799

**Testing:**
* Added an e2e test for the behavior
* Manually tested against BindPlane OP
This is failing too much on Windows skipping the test until it is fixed.
**Description:**

Ensure the monotonic clock has advanced prior to resetting, to ensure
the item generation is before the reset.
The monotonic clock is guaranteed to be non-decreasing, but may be
identical in consecutive measurements.

**Link to tracking Issue:**


#34252

**Testing:**

I couldn't reproduce the issue locally - this issue would depend on the
system clock frequency.

**Documentation:**

N/A
…eus remote write batch time series (#34271)

**Description:** 
Adjusting buffer allocations in
prometheusremotewriteexporter.batchTimeSeries

Rather than allocating the maximum possible size buffer each time we
memoize the last buffer size that we actually used and allocate a 2x
sized buffer for the next request. This ensures that we tend to allocate
buffers sized appropriately for the requests and still avoid array
resizing in most cases (unless the data point size changes by more than
2x from one request to the next).

This reduces memory allocations and memory usage significantly in our
testing when you have large batches.

In the case that the request sizes never meet the max request size
configured for the exporter the existing behavior will remain and we
will continue to allocate a single buffer with a size equal to the
number of time series / metric metadata objects passed in. There will
still be a benefit of not allocating a huge requests buffer in this case
since instead of allocating a buffer with a size equal to the number of
total objects passed in we default to a buffer of size 10 or 2x the last
number of requests whichever is larger.

**Link to tracking Issue:** 
Fixes
#34269
**Testing:**
We have validated this fix in our test environment and existing unit
tests cover this code. The observable behavior is unchanged as this just
tweaks the pre-allocated size of the buffers. I can add some unit tests
to validate the memoized buffer sizes once we agree on the proper place
to store that memoization.

**Documentation:**
No documentation added as this is a perf optimization that doesn't have
any user facing impact beyond reducing memory usage.
… AWS service name (#33798)

**Description:** 
Cherry-picking from downstream:
amazon-contributing#197

Changes:
- unify the log group name to /aws/application-signals/data.
- rename Application Signals metric namespace.
- removed OTelLib name label from EMF log

---------

Co-authored-by: Mengyi Zhou (bjrara) <[email protected]>
@cparkins cparkins closed this Aug 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.