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

New component: Sumo Logic Extension #29601

Closed
2 tasks done
sumo-drosiek opened this issue Dec 1, 2023 · 3 comments · Fixed by #31478
Closed
2 tasks done

New component: Sumo Logic Extension #29601

sumo-drosiek opened this issue Dec 1, 2023 · 3 comments · Fixed by #31478
Labels
Accepted Component New component has been sponsored Vendor-Specific Component New component that interfaces with a vendor API and will be maintained by the vendor.

Comments

@sumo-drosiek
Copy link
Member

sumo-drosiek commented Dec 1, 2023

The purpose and use-cases of the new component

Code: https://github.com/SumoLogic/sumologic-otel-collector/tree/main/pkg/extension/sumologicextension

This extension is to be used as part of Sumo Logic collector in conjuction with Sumo Logic Exporter in order to export telemetry data to Sumo Logic.

It manages:

  • authentication (passing the provided credentials to sumologicexporter when configured as extension in the same service)
  • registration (storing the registration info locally after successful registration for later use)
  • heartbeats

Example configuration for the component

  • installation_token: (required) collector installation token for the Sumo Logic service, see
    help for more details

  • collector_name: name that will be used for registration; by default the hostname is used. In the event of a conflict, a timestamp will be appended to the name. See here for more information.

  • collector_description: collector description that will be used for registration

  • collector_category: collector category that will be used for registration

  • collector_fields: a map of key value pairs that will be used as collector
    fields that will be used for registration.
    For more information on this subject please visit this help document

  • discover_collector_tags: defines whether to auto-discover collector metadata
    tags (for local services, e.g. mysql) (default: true)

    NOTE: collector metadata tag auto-discovery is an alpha feature.

  • api_base_url: base API URL that will be used for creating API requests,
    see API URLs details
    (default: https://open-collectors.sumologic.com)

  • heartbeat_interval: interval that will be used for sending heartbeats
    (default: 15s)

  • collector_credentials_directory: directory where state files with registration
    info will be stored after successful collector registration
    (default: $HOME/.sumologic-otel-collector)

  • clobber: defines whether to delete any existing collector with the same name. See here for more information.

  • force_registration: defines whether to force registration every time the
    collector starts.
    This will cause the collector to not look at the locally stored credentials
    and to always reach out to API to register itself. (default: false)

    NOTE: if clobber is unset (default) then setting this to true will create
    a new collector (with new unique name) on Sumo UI on every collector start
    and create a new one upon registration.

  • ephemeral: defines whether the collector will be deleted after 12 hours
    of inactivity (default: false)

  • time_zone: defines the time zone of the collector. For a list of all possible
    values, refer to the TZ database name or Time zone abbreviation columns in
    https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List

  • backoff: defines backoff mechanism for retry in case of failed registration.
    Exponential algorithm is being used.

    • initial_interval - initial interval of backoff (default: 500ms)
    • max_interval - maximum interval of backoff (default: 1m)
    • max_elapsed_time - time after which registration fails definitely (default: 15m)
extensions:
  sumologic:
    installation_token: <token>
    collector_name: my_collector
    time_zone: CET

receivers:
  hostmetrics:
    collection_interval: 30s
    scrapers:
      load:

processors:

exporters:
  sumologic:
    auth:
      authenticator: sumologic # Specify the name of the authenticator extension

service:
  extensions: [sumologic]
  pipelines:
    metrics:
      receivers: [hostmetrics]
      processors: []
      exporters: [sumologic]

Telemetry data types supported

  • logs
  • metrics
  • traces

Is this a vendor-specific component?

  • This is a vendor-specific component
  • If this is a vendor-specific component, I am proposing to contribute and support it as a representative of the vendor.

Code Owner(s)

@sumo-drosiek

Sponsor (optional)

@astencel-sumo

Additional context

This extensions works in conjuction with Sumo Logic Exporter, however exporter in this repository is in very old version and is not supported

We decided to go with the extension first, as it doesn't require exporter to work, but exporter in new version requires this extension by default

@andrzej-stencel
Copy link
Member

I'm happy to sponsor this component.

It's been used in the Sumo Logic distro for probably more than two years now. The component is crucial for users to easily send data to Sumo Logic by just providing the Sumo Installation Token in the extension's configuration.

@andrzej-stencel andrzej-stencel removed the needs triage New item requiring triage label Dec 5, 2023
@atoulme atoulme added Accepted Component New component has been sponsored Vendor-Specific Component New component that interfaces with a vendor API and will be maintained by the vendor. and removed Sponsor Needed New component seeking sponsor labels Dec 6, 2023
djaglowski pushed a commit that referenced this issue Feb 2, 2024
**Description:**

Adds new component (sumologicextension). This is only factory and
configuration PR

**Link to tracking Issue:** #29601 

**Testing:** N/A

**Documentation:**

- readme
- metadata.yaml

---------

Signed-off-by: Dominik Rosiek <drosiek@sumologic.com>
Co-authored-by: Antoine Toulme <antoine@toulme.name>
Co-authored-by: Andrzej Stencel <astencel@sumologic.com>
Copy link
Contributor

github-actions bot commented Feb 6, 2024

This issue has been inactive for 60 days. It will be closed in 60 days if there is no activity. To ping code owners by adding a component label, see Adding Labels via Comments, or if you are unsure of which component this issue relates to, please ping @open-telemetry/collector-contrib-triagers. If this issue is still relevant, please ping the code owners or leave a comment explaining why it is still relevant. Otherwise, please close it.

@github-actions github-actions bot added the Stale label Feb 6, 2024
@sumo-drosiek
Copy link
Member Author

It is active: #31031

@github-actions github-actions bot removed the Stale label Feb 7, 2024
anthoai97 pushed a commit to anthoai97/opentelemetry-collector-contrib that referenced this issue Feb 12, 2024
**Description:**

Adds new component (sumologicextension). This is only factory and
configuration PR

**Link to tracking Issue:** open-telemetry#29601 

**Testing:** N/A

**Documentation:**

- readme
- metadata.yaml

---------

Signed-off-by: Dominik Rosiek <drosiek@sumologic.com>
Co-authored-by: Antoine Toulme <antoine@toulme.name>
Co-authored-by: Andrzej Stencel <astencel@sumologic.com>
dmitryax pushed a commit that referenced this issue Feb 28, 2024
…31031)

**Description:**

Add functionality based on Sumo Logic Repo code

**Link to tracking Issue:**

#29601

**Testing:**

* Unit tests
* manual tests
* in use by customers for long time already

**Documentation:**

* code comments
* README.md

---------

Signed-off-by: Dominik Rosiek <drosiek@sumologic.com>
Co-authored-by: Andrzej Stencel <astencel@sumologic.com>
Co-authored-by: Mikołaj Świątek <mail+sumo@mikolajswiatek.com>
XinRanZhAWS pushed a commit to XinRanZhAWS/opentelemetry-collector-contrib that referenced this issue Mar 13, 2024
…pen-telemetry#31031)

**Description:**

Add functionality based on Sumo Logic Repo code

**Link to tracking Issue:**

open-telemetry#29601

**Testing:**

* Unit tests
* manual tests
* in use by customers for long time already

**Documentation:**

* code comments
* README.md

---------

Signed-off-by: Dominik Rosiek <drosiek@sumologic.com>
Co-authored-by: Andrzej Stencel <astencel@sumologic.com>
Co-authored-by: Mikołaj Świątek <mail+sumo@mikolajswiatek.com>
dmitryax pushed a commit that referenced this issue Mar 20, 2024
**Description:**

Add Sumo Logic Extension to contrib executable. Fixes #29601

**Link to tracking Issue:** #29601

**Testing:** N/A

**Documentation:**

`metadata.yaml`

---------

Signed-off-by: Dominik Rosiek <drosiek@sumologic.com>
Co-authored-by: Andrzej Stencel <astencel@sumologic.com>
sethAmazon added a commit to amazon-contributing/opentelemetry-collector-contrib that referenced this issue Apr 23, 2024
* [chore] Remove use of deprecated configtls structs (#31814)

* fix(deps): update module google.golang.org/api to v0.170.0 (#31834)

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

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[google.golang.org/api](https://togithub.com/googleapis/google-api-go-client)
| `v0.167.0` -> `v0.170.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fapi/v0.170.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fapi/v0.170.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fapi/v0.167.0/v0.170.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fapi/v0.167.0/v0.170.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[google.golang.org/api](https://togithub.com/googleapis/google-api-go-client)
| `v0.166.0` -> `v0.170.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fapi/v0.170.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fapi/v0.170.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fapi/v0.166.0/v0.170.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fapi/v0.166.0/v0.170.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>googleapis/google-api-go-client
(google.golang.org/api)</summary>

###
[`v0.170.0`](https://togithub.com/googleapis/google-api-go-client/releases/tag/v0.170.0)

[Compare
Source](https://togithub.com/googleapis/google-api-go-client/compare/v0.169.0...v0.170.0)

##### Features

- **all:** Auto-regenerate discovery clients
([#&#8203;2458](https://togithub.com/googleapis/google-api-go-client/issues/2458))
([fb2b816](https://togithub.com/googleapis/google-api-go-client/commit/fb2b816b756c5b8bc80f5485ad93d710fdfdb6ea))
- **all:** Auto-regenerate discovery clients
([#&#8203;2460](https://togithub.com/googleapis/google-api-go-client/issues/2460))
([dc4811a](https://togithub.com/googleapis/google-api-go-client/commit/dc4811aa3cfdf120544f3e2eddd1962a56794a08))
- **all:** Auto-regenerate discovery clients
([#&#8203;2461](https://togithub.com/googleapis/google-api-go-client/issues/2461))
([e938bf1](https://togithub.com/googleapis/google-api-go-client/commit/e938bf17ecd2b8430d95b7adb066f9a35f03dceb))
- **all:** Auto-regenerate discovery clients
([#&#8203;2464](https://togithub.com/googleapis/google-api-go-client/issues/2464))
([c3a2f34](https://togithub.com/googleapis/google-api-go-client/commit/c3a2f34ee8091bf1aab9f9a44d38a42f40d5a81d))
- **all:** Auto-regenerate discovery clients
([#&#8203;2466](https://togithub.com/googleapis/google-api-go-client/issues/2466))
([de61eb7](https://togithub.com/googleapis/google-api-go-client/commit/de61eb772c1f4b91bf46934101331953c82f3d96))
- **all:** Auto-regenerate discovery clients
([#&#8203;2468](https://togithub.com/googleapis/google-api-go-client/issues/2468))
([67f16b6](https://togithub.com/googleapis/google-api-go-client/commit/67f16b6ada0cd92d94d98bb32f3bec61ca3472c6))
- **all:** Auto-regenerate discovery clients
([#&#8203;2471](https://togithub.com/googleapis/google-api-go-client/issues/2471))
([5537676](https://togithub.com/googleapis/google-api-go-client/commit/5537676cf7a165ff492701a368b94c11511d2929))

###
[`v0.169.0`](https://togithub.com/googleapis/google-api-go-client/releases/tag/v0.169.0)

[Compare
Source](https://togithub.com/googleapis/google-api-go-client/compare/v0.168.0...v0.169.0)

##### Features

- **all:** Auto-regenerate discovery clients
([#&#8203;2450](https://togithub.com/googleapis/google-api-go-client/issues/2450))
([d22da18](https://togithub.com/googleapis/google-api-go-client/commit/d22da1806db891da12d7290ef4334e18fbaf0ca2))
- **all:** Auto-regenerate discovery clients
([#&#8203;2454](https://togithub.com/googleapis/google-api-go-client/issues/2454))
([2675c0a](https://togithub.com/googleapis/google-api-go-client/commit/2675c0abf9e442bb3ac35e18ecc196aaaa4facd3))
- **all:** Auto-regenerate discovery clients
([#&#8203;2457](https://togithub.com/googleapis/google-api-go-client/issues/2457))
([a488112](https://togithub.com/googleapis/google-api-go-client/commit/a488112cd111b883dfaffa7e4ab67e99a6ea9b90))

###
[`v0.168.0`](https://togithub.com/googleapis/google-api-go-client/releases/tag/v0.168.0)

[Compare
Source](https://togithub.com/googleapis/google-api-go-client/compare/v0.167.0...v0.168.0)

##### Features

- **all:** Auto-regenerate discovery clients
([#&#8203;2431](https://togithub.com/googleapis/google-api-go-client/issues/2431))
([e635a5e](https://togithub.com/googleapis/google-api-go-client/commit/e635a5e61572ec4a7dbad19a9e32ab7918cde9f0))
- **all:** Auto-regenerate discovery clients
([#&#8203;2433](https://togithub.com/googleapis/google-api-go-client/issues/2433))
([0c30ecc](https://togithub.com/googleapis/google-api-go-client/commit/0c30ecca06ff770fafce74743b0a038122e31813))
- **all:** Auto-regenerate discovery clients
([#&#8203;2436](https://togithub.com/googleapis/google-api-go-client/issues/2436))
([4dc71d4](https://togithub.com/googleapis/google-api-go-client/commit/4dc71d4531deeb116af23cd13245ca644f0be991))
- **all:** Auto-regenerate discovery clients
([#&#8203;2438](https://togithub.com/googleapis/google-api-go-client/issues/2438))
([d290e18](https://togithub.com/googleapis/google-api-go-client/commit/d290e1861655087f52294c6e4994688cbfb3098a))
- **all:** Auto-regenerate discovery clients
([#&#8203;2442](https://togithub.com/googleapis/google-api-go-client/issues/2442))
([9f9c0cf](https://togithub.com/googleapis/google-api-go-client/commit/9f9c0cf59e864281bd8b04319e4ce4c3914e147c))
- **all:** Auto-regenerate discovery clients
([#&#8203;2443](https://togithub.com/googleapis/google-api-go-client/issues/2443))
([ced0c09](https://togithub.com/googleapis/google-api-go-client/commit/ced0c099be7b1bfa2802567f2a6e57b69b29285e))
- **all:** Auto-regenerate discovery clients
([#&#8203;2445](https://togithub.com/googleapis/google-api-go-client/issues/2445))
([4fa90c9](https://togithub.com/googleapis/google-api-go-client/commit/4fa90c93dd04c64c6e1a35b358a23cb014be0e7a))
- **all:** Auto-regenerate discovery clients
([#&#8203;2447](https://togithub.com/googleapis/google-api-go-client/issues/2447))
([022c85c](https://togithub.com/googleapis/google-api-go-client/commit/022c85c3d443e58228ea3eb51ee621f2a20d3a45))
- **all:** Auto-regenerate discovery clients
([#&#8203;2448](https://togithub.com/googleapis/google-api-go-client/issues/2448))
([af383c7](https://togithub.com/googleapis/google-api-go-client/commit/af383c78468f5129b2333ad7222fb361873a4cd4))
- **all:** Auto-regenerate discovery clients
([#&#8203;2449](https://togithub.com/googleapis/google-api-go-client/issues/2449))
([b438981](https://togithub.com/googleapis/google-api-go-client/commit/b43898129eca3b710c3573c48672b73a46ea9cdc))

</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 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

* fix(deps): update module github.com/sijms/go-ora/v2 to v2.8.10 (#31826)

[![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/sijms/go-ora/v2](https://togithub.com/sijms/go-ora) |
`v2.8.9` -> `v2.8.10` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fsijms%2fgo-ora%2fv2/v2.8.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fsijms%2fgo-ora%2fv2/v2.8.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fsijms%2fgo-ora%2fv2/v2.8.9/v2.8.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fsijms%2fgo-ora%2fv2/v2.8.9/v2.8.10?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>sijms/go-ora (github.com/sijms/go-ora/v2)</summary>

### [`v2.8.10`](https://togithub.com/sijms/go-ora/releases/tag/v2.8.10):
: fix issues related to numbers and select for update

[Compare
Source](https://togithub.com/sijms/go-ora/compare/v2.8.9...v2.8.10)

</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 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

* fix(deps): update module cloud.google.com/go/spanner to v1.60.0 (#31827)

[![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.58.0` -> `v1.60.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/cloud.google.com%2fgo%2fspanner/v1.60.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.60.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.58.0/v1.60.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.58.0/v1.60.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 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

* [chore][connector/datadogconnector] Fix connector traceToMetrics lifecycle (#31811)

**Description:**
Currently, calling `Shutdown` on the `traceToMetricConnector` requires
on `Start` being called before, as the `Shutdown` relies on goroutines
which are spawned during `Start`. This causes the connector to hang if a
call to `Shutdown` is made without a call to `Start`. This PR adds a
`isStarted` field to the `traceToMetricConnector` struct, which tracks
whether `Start` was called. If it was not, it makes the call to
`Shutdown` a no-op.

**Link to tracking Issue:** #30487

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

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

---------

Co-authored-by: Antoine Toulme <antoine@toulme.name>

* [chore] Remove use of deprecated scraperhelper structs/funcs (#31816)

* [exporter/file] add encoding extension support (#31774)

**Description:**
This adds support to set an encoding extension on the file exporter,
overriding the format type.

* fix(deps): update module github.com/coreos/go-oidc/v3 to v3.10.0 (#31840)

[![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/coreos/go-oidc/v3](https://togithub.com/coreos/go-oidc) |
`v3.9.0` -> `v3.10.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fcoreos%2fgo-oidc%2fv3/v3.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fcoreos%2fgo-oidc%2fv3/v3.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fcoreos%2fgo-oidc%2fv3/v3.9.0/v3.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fcoreos%2fgo-oidc%2fv3/v3.9.0/v3.10.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>coreos/go-oidc (github.com/coreos/go-oidc/v3)</summary>

###
[`v3.10.0`](https://togithub.com/coreos/go-oidc/releases/tag/v3.10.0)

[Compare
Source](https://togithub.com/coreos/go-oidc/compare/v3.9.0...v3.10.0)

#### What's Changed

- fix minor typo by [@&#8203;bgerrity](https://togithub.com/bgerrity) in
[https://github.com/coreos/go-oidc/pull/414](https://togithub.com/coreos/go-oidc/pull/414)
- updated github actions by
[@&#8203;ericchiang](https://togithub.com/ericchiang) in
[https://github.com/coreos/go-oidc/pull/419](https://togithub.com/coreos/go-oidc/pull/419)
- add staticcheck to github actions by
[@&#8203;ericchiang](https://togithub.com/ericchiang) in
[https://github.com/coreos/go-oidc/pull/420](https://togithub.com/coreos/go-oidc/pull/420)
- update go-jose to v4 by
[@&#8203;ericchiang](https://togithub.com/ericchiang) in
[https://github.com/coreos/go-oidc/pull/421](https://togithub.com/coreos/go-oidc/pull/421)

#### New Contributors

- [@&#8203;bgerrity](https://togithub.com/bgerrity) made their first
contribution in
[https://github.com/coreos/go-oidc/pull/414](https://togithub.com/coreos/go-oidc/pull/414)

**Full Changelog**:
https://github.com/coreos/go-oidc/compare/v3.9.0...v3.10.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 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

* chore(deps): update wandalen/wretry.action action to v1.4.10 (#31823)

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

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [Wandalen/wretry.action](https://togithub.com/Wandalen/wretry.action)
| action | patch | `v1.4.9` -> `v1.4.10` |

---

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

---

### Release Notes

<details>
<summary>Wandalen/wretry.action (Wandalen/wretry.action)</summary>

###
[`v1.4.10`](https://togithub.com/Wandalen/wretry.action/compare/v1.4.9...v1.4.10)

[Compare
Source](https://togithub.com/Wandalen/wretry.action/compare/v1.4.9...v1.4.10)

</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 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update module github.com/clickhouse/clickhouse-go/v2 to v2.22.2 (#31828)

[![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/ClickHouse/clickhouse-go/v2](https://togithub.com/ClickHouse/clickhouse-go)
| `v2.21.1` -> `v2.22.2` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fClickHouse%2fclickhouse-go%2fv2/v2.22.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fClickHouse%2fclickhouse-go%2fv2/v2.22.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fClickHouse%2fclickhouse-go%2fv2/v2.21.1/v2.22.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fClickHouse%2fclickhouse-go%2fv2/v2.21.1/v2.22.2?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>ClickHouse/clickhouse-go
(github.com/ClickHouse/clickhouse-go/v2)</summary>

###
[`v2.22.2`](https://togithub.com/ClickHouse/clickhouse-go/blob/HEAD/CHANGELOG.md#v2222-2024-03-18----Release-notes-generated-using-configuration-in-githubreleaseyml-at-main---)

[Compare
Source](https://togithub.com/ClickHouse/clickhouse-go/compare/v2.22.1...v2.22.2)

#### What's Changed

##### Fixes 🐛

- Fix for Map columns with Enums by
[@&#8203;leklund](https://togithub.com/leklund) in
[https://github.com/ClickHouse/clickhouse-go/pull/1236](https://togithub.com/ClickHouse/clickhouse-go/pull/1236)

#### New Contributors

- [@&#8203;leklund](https://togithub.com/leklund) made their first
contribution in
[https://github.com/ClickHouse/clickhouse-go/pull/1236](https://togithub.com/ClickHouse/clickhouse-go/pull/1236)

**Full Changelog**:
https://github.com/ClickHouse/clickhouse-go/compare/v2.22.1...v2.22.2

###
[`v2.22.1`](https://togithub.com/ClickHouse/clickhouse-go/blob/HEAD/CHANGELOG.md#v2221-2024-03-18----Release-notes-generated-using-configuration-in-githubreleaseyml-at-main---)

[Compare
Source](https://togithub.com/ClickHouse/clickhouse-go/compare/v2.22.0...v2.22.1)

#### What's Changed

##### Fixes 🐛

- Make errors channel buffered inside query() by
[@&#8203;threadedstream](https://togithub.com/threadedstream) in
[https://github.com/ClickHouse/clickhouse-go/pull/1237](https://togithub.com/ClickHouse/clickhouse-go/pull/1237)

**Full Changelog**:
https://github.com/ClickHouse/clickhouse-go/compare/v2.22.0...v2.22.1

###
[`v2.22.0`](https://togithub.com/ClickHouse/clickhouse-go/releases/tag/v2.22.0)

[Compare
Source](https://togithub.com/ClickHouse/clickhouse-go/compare/v2.21.1...v2.22.0)

<!-- Release notes generated using configuration in .github/release.yml
at main -->

#### What's Changed

##### Enhancements 🎉

- Experimental streaming SELECT results into batch insert by
[@&#8203;jkaflik](https://togithub.com/jkaflik) in
[https://github.com/ClickHouse/clickhouse-go/pull/1233](https://togithub.com/ClickHouse/clickhouse-go/pull/1233)

##### Fixes 🐛

- Ignore materialized and alias cols infered during HTTP prepare batch
by [@&#8203;iyuroch](https://togithub.com/iyuroch) in
[https://github.com/ClickHouse/clickhouse-go/pull/1214](https://togithub.com/ClickHouse/clickhouse-go/pull/1214)

#### New Contributors

- [@&#8203;iyuroch](https://togithub.com/iyuroch) made their first
contribution in
[https://github.com/ClickHouse/clickhouse-go/pull/1214](https://togithub.com/ClickHouse/clickhouse-go/pull/1214)

**Full Changelog**:
https://github.com/ClickHouse/clickhouse-go/compare/v2.21.1...v2.22.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 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

* chore(deps): update prom/prometheus docker tag to v2.51.0 (#31836)

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

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| prom/prometheus | minor | `v2.50.1` -> `v2.51.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 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update module gonum.org/v1/gonum to v0.15.0 (#31831)

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

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| gonum.org/v1/gonum | `v0.14.0` -> `v0.15.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/gonum.org%2fv1%2fgonum/v0.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/gonum.org%2fv1%2fgonum/v0.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/gonum.org%2fv1%2fgonum/v0.14.0/v0.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/gonum.org%2fv1%2fgonum/v0.14.0/v0.15.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 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

* fix(deps): update module github.com/daixiang0/gci to v0.13.1 (#31829)

[![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/daixiang0/gci](https://togithub.com/daixiang0/gci) |
`v0.12.3` -> `v0.13.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fdaixiang0%2fgci/v0.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fdaixiang0%2fgci/v0.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fdaixiang0%2fgci/v0.12.3/v0.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fdaixiang0%2fgci/v0.12.3/v0.13.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>daixiang0/gci (github.com/daixiang0/gci)</summary>

### [`v0.13.1`](https://togithub.com/daixiang0/gci/releases/tag/v0.13.1)

[Compare
Source](https://togithub.com/daixiang0/gci/compare/v0.13.0...v0.13.1)

#### What's Changed

- Enhance LocalModule when no go sources found in project root by
[@&#8203;petr-korobeinikov](https://togithub.com/petr-korobeinikov) in
[https://github.com/daixiang0/gci/pull/192](https://togithub.com/daixiang0/gci/pull/192)

#### New Contributors

- [@&#8203;petr-korobeinikov](https://togithub.com/petr-korobeinikov)
made their first contribution in
[https://github.com/daixiang0/gci/pull/192](https://togithub.com/daixiang0/gci/pull/192)

**Full Changelog**:
https://github.com/daixiang0/gci/compare/v0.13...v0.13.1

### [`v0.13.0`](https://togithub.com/daixiang0/gci/releases/tag/v0.13.0)

[Compare
Source](https://togithub.com/daixiang0/gci/compare/v0.12.3...v0.13.0)

#### What's Changed

- Add basic attempt at local module handling by
[@&#8203;matthewhughes934](https://togithub.com/matthewhughes934) in
[https://github.com/daixiang0/gci/pull/179](https://togithub.com/daixiang0/gci/pull/179)
- Bump up to 0.13 by [@&#8203;daixiang0](https://togithub.com/daixiang0)
in
[https://github.com/daixiang0/gci/pull/190](https://togithub.com/daixiang0/gci/pull/190)

#### New Contributors

- [@&#8203;matthewhughes934](https://togithub.com/matthewhughes934) made
their first contribution in
[https://github.com/daixiang0/gci/pull/179](https://togithub.com/daixiang0/gci/pull/179)

**Full Changelog**:
https://github.com/daixiang0/gci/compare/v0.12.3...v0.13

</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 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

* [exporter/datadog] Fix data race in metrics exporter shutdown (#31838)

**Description:** 
Fix data race in metrics exporter shutdown.
If we do not do `f.wg.Wait()` before closing `statsToAgent`, there can
be a race condition when the goroutine still tries to write to
`statsToAgent` after it is closed.

Fixes
https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/31663

* [connector/datadog] Add container tags (#31642)

**Description:** 
Customers can now set container tags on stats payload computed in DD
connector.

sample collector config:
```
  datadog/connector:
    traces:
      resource_attributes_as_container_tags:
        - "k8s.pod.name"
        - "cloud.availability_zone"
```

* feat(sumologicextension): enable Sumo Logic Extension (#31478)

**Description:**

Add Sumo Logic Extension to contrib executable. Fixes #29601

**Link to tracking Issue:** #29601

**Testing:** N/A

**Documentation:**

`metadata.yaml`

---------

Signed-off-by: Dominik Rosiek <drosiek@sumologic.com>
Co-authored-by: Andrzej Stencel <astencel@sumologic.com>

* [receiver/opencensus] refactor the code for maintenance and lifecycle tests (#31648)

**Description:**
Simplify the code of the opencensus receiver to make it more
maintainable, reduce leaks and pass lifecycle tests.

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

* Promote the OpAMP extension to alpha stability (#31616)

* Update all dd agent pkgs (#31893)

**Description:**
This PR updates all DD packages to pseudoversion from the
[mackjmr/otel/backport](https://github.com/DataDog/datadog-agent/commits/mackjmr/otel/backport/)
branch.

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

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

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

* [chore][awscloudwatchlogsexporter] Enable goleak check (#31891)

Description:
Enables `goleak` checking on the `awscloudwatchlogsexporter` package.

Link to tracking Issue:

https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/30438

Signed-off-by: Israel Blancas <iblancasa@gmail.com>

* feat(dockerstats): add online cpu and memory failcnt metrics (#31481)

**Description:** two new metrics have been added, they were already
being scraped but not emitted

**Link to tracking Issue:** #31366

**Testing:** added new metrics to `TestScrapeV2` 

**Documentation:** generated by mdatagen

* [extension/ackextension] Implement in-memory ack extension (#31651)

**Description:** 
Adding the in-memory implementation of the Ack extension proposed in
https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/26376.

**Link to tracking Issue:** https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/26376

* [exporter/clickhouse] Update integration tests+readme (#31896)

**Description:** Fixed code review nits leftover from #30209 

**Testing:**
- Added `clickhouse/clickhouse-server:24-alpine` to integration tests

**Documentation:**
- Added example command for running integration tests

* fix(deps): update all github.com/aws packages (#31557)

[![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/aws/aws-sdk-go](https://togithub.com/aws/aws-sdk-go) |
`v1.50.27` -> `v1.51.3` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go/v1.51.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go/v1.51.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go/v1.50.27/v1.51.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go/v1.50.27/v1.51.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [github.com/aws/aws-sdk-go-v2](https://togithub.com/aws/aws-sdk-go-v2)
| `v1.25.2` -> `v1.26.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2/v1.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2/v1.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2/v1.25.2/v1.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2/v1.25.2/v1.26.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/config](https://togithub.com/aws/aws-sdk-go-v2)
| `v1.27.4` -> `v1.27.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.4/v1.27.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.4/v1.27.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/config](https://togithub.com/aws/aws-sdk-go-v2)
| `v1.27.7` -> `v1.27.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.7/v1.27.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.7/v1.27.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/credentials](https://togithub.com/aws/aws-sdk-go-v2)
| `v1.17.4` -> `v1.17.8` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fcredentials/v1.17.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fcredentials/v1.17.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fcredentials/v1.17.4/v1.17.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fcredentials/v1.17.4/v1.17.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/kinesis](https://togithub.com/aws/aws-sdk-go-v2)
| `v1.27.1` -> `v1.27.3` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fkinesis/v1.27.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fkinesis/v1.27.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fkinesis/v1.27.1/v1.27.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fkinesis/v1.27.1/v1.27.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/s3](https://togithub.com/aws/aws-sdk-go-v2)
| `v1.51.1` -> `v1.53.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fs3/v1.53.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fs3/v1.53.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fs3/v1.51.1/v1.53.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fs3/v1.51.1/v1.53.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/secretsmanager](https://togithub.com/aws/aws-sdk-go-v2)
| `v1.28.1` -> `v1.28.4` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsecretsmanager/v1.28.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsecretsmanager/v1.28.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsecretsmanager/v1.28.1/v1.28.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsecretsmanager/v1.28.1/v1.28.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/servicediscovery](https://togithub.com/aws/aws-sdk-go-v2)
| `v1.29.2` -> `v1.29.3` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fservicediscovery/v1.29.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fservicediscovery/v1.29.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fservicediscovery/v1.29.2/v1.29.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fservicediscovery/v1.29.2/v1.29.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/aws/aws-sdk-go-v2/service/sts](https://togithub.com/aws/aws-sdk-go-v2)
| `v1.28.1` -> `v1.28.5` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsts/v1.28.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsts/v1.28.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsts/v1.28.1/v1.28.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fsts/v1.28.1/v1.28.5?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>aws/aws-sdk-go (github.com/aws/aws-sdk-go)</summary>

###
[`v1.51.3`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v1513-2024-03-19)

[Compare
Source](https://togithub.com/aws/aws-sdk-go/compare/v1.51.2...v1.51.3)

\===

##### Service Client Updates

-   `service/cloudformation`: Updates service documentation
    -   Documentation update, March 2024. Corrects some formatting.
-   `service/ec2`: Updates service API, documentation, and paginators
- This release adds the new DescribeMacHosts API operation for getting
information about EC2 Mac Dedicated Hosts. Users can now see the latest
macOS versions that their underlying Apple Mac can support without
needing to be updated.
-   `service/finspace`: Updates service API and documentation
-   `service/logs`: Updates service API and documentation
- Update LogSamples field in Anomaly model to be a list of LogEvent
- `service/managedblockchain-query`: Updates service API, documentation,
and paginators

###
[`v1.51.2`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v1512-2024-03-18)

[Compare
Source](https://togithub.com/aws/aws-sdk-go/compare/v1.51.1...v1.51.2)

\===

##### Service Client Updates

-   `service/cloudformation`: Updates service API and documentation
- This release supports for a new API ListStackSetAutoDeploymentTargets,
which provider auto-deployment configuration as a describable resource.
Customers can now view the specific combinations of regions and OUs that
are being auto-deployed.
-   `service/kms`: Updates service API and documentation
- Adds the ability to use the default policy name by omitting the
policyName parameter in calls to PutKeyPolicy and GetKeyPolicy
-   `service/mediatailor`: Updates service API and documentation
- `service/rds`: Updates service API, documentation, waiters,
paginators, and examples
- This release launches the ModifyIntegration API and support for data
filtering for zero-ETL Integrations.
-   `service/s3`: Updates service API and examples
    -   Fix two issues with response root node names.
-   `service/timestream-query`: Updates service documentation

###
[`v1.51.1`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v1511-2024-03-15)

[Compare
Source](https://togithub.com/aws/aws-sdk-go/compare/v1.51.0...v1.51.1)

\===

##### Service Client Updates

-   `service/backup`: Updates service API and documentation
-   `service/codebuild`: Updates service API and documentation
- AWS CodeBuild now supports overflow behavior on Reserved Capacity.
-   `service/connect`: Updates service API and documentation
-   `service/ec2`: Updates service API and documentation
- Add media accelerator and neuron device information on the describe
instance types API.
-   `service/kinesisanalyticsv2`: Updates service API and documentation
-   `service/s3`: Updates service documentation and examples
    -   Documentation updates for Amazon S3.
-   `service/sagemaker`: Updates service API and documentation
- Adds m6i, m6id, m7i, c6i, c6id, c7i, r6i r6id, r7i, p5 instance type
support to Sagemaker Notebook Instances and miscellaneous wording fixes
for previous Sagemaker documentation.
- `service/workspaces-thin-client`: Updates service API and
documentation

###
[`v1.51.0`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v1510-2024-03-14)

[Compare
Source](https://togithub.com/aws/aws-sdk-go/compare/v1.50.38...v1.51.0)

\===

##### Service Client Updates

-   `service/amplify`: Updates service documentation
- `service/ec2-instance-connect`: Updates service API and documentation
-   `service/elasticloadbalancingv2`: Updates service documentation
-   `service/fis`: Updates service API and documentation
- `service/rds`: Updates service API, documentation, waiters,
paginators, and examples
- Updates Amazon RDS documentation for EBCDIC collation for RDS for Db2.
-   `service/secretsmanager`: Updates service documentation
    -   Doc only update for Secrets Manager
-   `service/timestream-influxdb`: Adds new service

##### SDK Features

-   `service/iotroborunner`: Remove Iotroborunner
- This change removes the iotroborunner service, since it is deprecated.

###
[`v1.50.38`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v15038-2024-03-13)

[Compare
Source](https://togithub.com/aws/aws-sdk-go/compare/v1.50.37...v1.50.38)

\===

##### Service Client Updates

-   `service/ivs-realtime`: Updates service API and documentation
-   `service/kinesisanalyticsv2`: Updates service API and documentation
-   `service/s3`: Updates service examples
- This release makes the default option for S3 on Outposts request
signing to use the SigV4A algorithm when using AWS Common Runtime (CRT).

###
[`v1.50.37`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v15037-2024-03-12)

[Compare
Source](https://togithub.com/aws/aws-sdk-go/compare/v1.50.36...v1.50.37)

\===

##### Service Client Updates

-   `service/cloudformation`: Updates service documentation
    -   CloudFormation documentation update for March, 2024
-   `service/connect`: Updates service API and documentation
-   `service/ec2`: Updates service documentation
    -   Documentation updates for Amazon EC2.
-   `service/kafka`: Updates service API and documentation
-   `service/ssm`: Updates service documentation
    -   March 2024 doc-only updates for Systems Manager.

###
[`v1.50.36`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v15036-2024-03-11)

[Compare
Source](https://togithub.com/aws/aws-sdk-go/compare/v1.50.35...v1.50.36)

\===

##### Service Client Updates

- `service/codestar-connections`: Updates service API and documentation
-   `service/elasticache`: Updates service documentation
- Revisions to API text that are now to be carried over to SDK text,
changing usages of "SFO" in code examples to "us-west-1", and some other
typos.
-   `service/mediapackagev2`: Updates service API and documentation

###
[`v1.50.35`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v15035-2024-03-08)

[Compare
Source](https://togithub.com/aws/aws-sdk-go/compare/v1.50.34...v1.50.35)

\===

##### Service Client Updates

-   `service/batch`: Updates service API and documentation
- This release adds JobStateTimeLimitActions setting to the Job Queue
API. It allows you to configure an action Batch can take for a blocking
job in front of the queue after the defined period of time. The new
parameter applies for ECS, EKS, and FARGATE Job Queues.
- `service/bedrock-agent-runtime`: Updates service API and documentation
-   `service/cloudtrail`: Updates service API and documentation
- Added exceptions to CreateTrail, DescribeTrails, and
ListImportFailures APIs.
-   `service/codebuild`: Updates service documentation
- This release adds support for a new webhook event:
PULL_REQUEST_CLOSED.
-   `service/cognito-idp`: Updates service API and documentation
-   `service/guardduty`: Updates service API and documentation
    -   Add RDS Provisioned and Serverless Usage types
-   `service/transfer`: Updates service API and documentation
- Added DES_EDE3\_CBC to the list of supported encryption algorithms for
messages sent with an AS2 connector.

###
[`v1.50.34`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v15034-2024-03-07)

[Compare
Source](https://togithub.com/aws/aws-sdk-go/compare/v1.50.33...v1.50.34)

\===

##### Service Client Updates

-   `service/appconfig`: Updates service API and documentation
-   `service/ec2`: Updates service API and documentation
- This release adds an optional parameter to RegisterImage and CopyImage
APIs to support tagging AMIs at the time of creation.
-   `service/grafana`: Updates service API and documentation
-   `service/lambda`: Updates service documentation
    -   Documentation updates for AWS Lambda
- `service/payment-cryptography-data`: Updates service API and
documentation
- `service/rds`: Updates service API, documentation, waiters,
paginators, and examples
- Updates Amazon RDS documentation for io2 storage for Multi-AZ DB
clusters
-   `service/snowball`: Updates service documentation
    -   Doc-only update for change to EKS-Anywhere ordering.
-   `service/wafv2`: Updates service API and documentation
-   `service/workspaces`: Updates service documentation
    -   Added note for user decoupling

###
[`v1.50.33`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v15033-2024-03-06)

[Compare
Source](https://togithub.com/aws/aws-sdk-go/compare/v1.50.32...v1.50.33)

\===

##### Service Client Updates

- `service/dynamodb`: Updates service API, documentation, waiters,
paginators, and examples
    -   Doc only updates for DynamoDB documentation
-   `service/imagebuilder`: Updates service API and documentation
-   `service/mwaa`: Updates service documentation
- `service/rds`: Updates service API, documentation, waiters,
paginators, and examples
- Updated the input of CreateDBCluster and ModifyDBCluster to support
setting CA certificates. Updated the output of DescribeDBCluster to show
current CA certificate setting value.
-   `service/redshift`: Updates service documentation
- Update for documentation only. Covers port ranges, definition updates
for data sharing, and definition updates to cluster-snapshot
documentation.
-   `service/verifiedpermissions`: Updates service API and documentation

###
[`v1.50.32`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v15032-2024-03-05)

[Compare
Source](https://togithub.com/aws/aws-sdk-go/compare/v1.50.31...v1.50.32)

\===

##### Service Client Updates

-   `service/apigateway`: Updates service documentation
    -   Documentation updates for Amazon API Gateway
-   `service/chatbot`: Updates service API
-   `service/organizations`: Adds new service
    -   This release contains an endpoint addition
-   `service/sesv2`: Updates service API and documentation

###
[`v1.50.31`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v15031-2024-03-04)

[Compare
Source](https://togithub.com/aws/aws-sdk-go/compare/v1.50.30...v1.50.31)

\===

##### Service Client Updates

-   `service/cloudformation`: Updates service API and documentation
- Add DetailedStatus field to DescribeStackEvents and DescribeStacks
APIs
-   `service/fsx`: Updates service API and documentation
-   `service/organizations`: Updates service API and documentation
    -   Documentation update for AWS Organizations

###
[`v1.50.30`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v15030-2024-03-01)

[Compare
Source](https://togithub.com/aws/aws-sdk-go/compare/v1.50.29...v1.50.30)

\===

##### Service Client Updates

-   `service/accessanalyzer`: Updates service documentation
-   `service/autoscaling`: Updates service documentation
- With this release, Amazon EC2 Auto Scaling groups, EC2 Fleet, and Spot
Fleet improve the default price protection behavior of attribute-based
instance type selection of Spot Instances, to consistently select from a
wide range of instance types.
-   `service/ec2`: Updates service documentation
- With this release, Amazon EC2 Auto Scaling groups, EC2 Fleet, and Spot
Fleet improve the default price protection behavior of attribute-based
instance type selection of Spot Instances, to consistently select from a
wide range of instance types.

###
[`v1.50.29`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v15029-2024-02-29)

[Compare
Source](https://togithub.com/aws/aws-sdk-go/compare/v1.50.28...v1.50.29)

\===

##### Service Client Updates

-   `service/docdb-elastic`: Updates service API and documentation
-   `service/eks`: Updates service API
- `service/migrationhuborchestrator`: Updates service API and
documentation
-   `service/models.lex.v2`: Updates service API and documentation
-   `service/quicksight`: Updates service API and documentation
- TooltipTarget for Combo chart visuals; ColumnConfiguration limit
increase to 2000; Documentation Update
-   `service/sagemaker`: Updates service API and documentation
- Adds support for ModelDataSource in Model Packages to support unzipped
models. Adds support to specify SourceUri for models which allows
registration of models without mandating a container for hosting. Using
SourceUri, customers can decouple the model from hosting information
during registration.
-   `service/securitylake`: Updates service API and documentation

###
[`v1.50.28`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v15028-2024-02-28)

[Compare
Source](https://togithub.com/aws/aws-sdk-go/compare/v1.50.27...v1.50.28)

\===

##### Service Client Updates

-   `service/batch`: Updates service API and documentation
- This release adds Batch support for configuration of multicontainer
jobs in ECS, Fargate, and EKS. This support is available for all types
of jobs, including both array jobs and multi-node parallel jobs.
- `service/bedrock-agent-runtime`: Updates service API and documentation
-   `service/ce`: Updates service API and documentation
-   `service/ec2`: Updates service API and documentation
- This release increases the range of MaxResults for
GetNetworkInsightsAccessScopeAnalysisFindings to 1,000.
-   `service/iot`: Updates service API and documentation
- This release reduces the maximum results returned per query invocation
from 500 to 100 for the SearchIndex API. This change has no implications
as long as the API is invoked until the nextToken is NULL.
-   `service/wafv2`: Updates service API and documentation

</details>

<details>
<summary>aws/aws-sdk-go-v2 (github.com/aws/aws-sdk-go-v2)</summary>

###
[`v1.26.0`](https://togithub.com/aws/aws-sdk-go-v2/compare/v1.25.1...v1.26.0)

[Compare
Source](https://togithub.com/aws/aws-sdk-go-v2/compare/v1.25.3...v1.26.0)

###
[`v1.25.3`](https://togithub.com/aws/aws-sdk-go-v2/compare/v1.25.2...v1.25.3)

[Compare
Source](https://togithub.com/aws/aws-sdk-go-v2/compare/v1.25.2...v1.25.3)

</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.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

* [chore] [network scraper] Bound flaky test (#31898)

For some reason github runners occasionally see 13 instead of 12 metrics
See
[31001](https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/31001)

* [chore] Updates docker api to version v25 from v24, testcontainers-go from v0.20.0 to v0.29.1 (#31632)

**Description:** 

I don't have permissions to directly add commits to the update PR so
running it here

-
[PR](https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/31345)
-
[Issue](https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/31087)

* [fileexporter] Fix wrong marshaler type judgment (#31902)

**Description:** Fix wrong marshaler type judgment for `logs` and
`metrics` marshaler

Signed-off-by: Jared Tan <jian.tan@daocloud.io>

* [cmd/telemetrygen] Fix logs telemetry attributes key mapping (#31309)

**Description:**
This PR addresses a bug in the telemetry attribute key mapping for the
logs. Previously, the attribute key was incorrectly mapped to the value
property, leading to incorrect data representation on the exported logs.

**Changes:**
Corrected the attribute key mapping logic to ensure the key is mapped to
the key, not the value.

**Testing:**
The changes have been thoroughly tested under various scenarios to
ensure the bug has been fixed.

---------

Co-authored-by: Pablo Baeyens <pbaeyens31+github@gmail.com>

* [carbonreceiver]: Do not report fatal error when closed normally (#31913)

Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>

* [chore][receiver/k8sevent] Enable goleak check (#31917)

**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.-->
Enable goleak check to help ensure no goroutines are being leaked. This
is a test only change, a test was missing a shutdown call.

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

https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/30438

**Testing:** <Describe what testing was performed and which tests were
added.>
Existing tests are passing, as well as added goleak check.

* [exporter/clickhouse] ClickHouse replication / engine configuration (#31920)

## Originally submitted by @alex1704 in #26599.
Their original PR was closed as stale, so I have updated it to the
latest branch and made some improvements to code + tests.

**Description:**
- Add config option for setting `ON CLUSTER` on tables.
- Add config option for setting the table `ENGINE`.

These changes add the ability to set up [replication for fault
tolerance](https://clickhouse.com/docs/en/architecture/replication).

**Testing:**
Tests for data replication were added to:
- `exporter_logs_test.go` (`TestLogsTableCreationOnCluster`)
- `exporter_metrics_test.go` (`TestMetricsTablesCreationOnCluster`)
- `exporter_traces_test.go` (`TestTracesTablesCreationOnCluster`)

Additional tests were added for checking how `TableEngine` is parsed in
`config_test.go` (`TestTableEngineConfigParsing`)

**Documentation:**

Two new fields were added to the config:

```go
TableEngine TableEngine `mapstructure:"table_engine"`
ClusterName string `mapstructure:"cluster_name"`
```

TableEngine definition

```go
type TableEngine struct {
  Name string `mapstructure:"name"`
  Params string `mapstructure:"params"`
}
```

`table_engine` allows overriding the `ENGINE` in the table creation SQL.
Defaults to `MergeTree()`.
`ClusterName` allows optionally adding `ON CLUSTER` in the table
creation SQL. Disabled by default.

Example config for enabling [replication for fault
tolerance](https://clickhouse.com/docs/en/architecture/replication):
```yml
exporters:
  clickhouse:
    endpoint: tcp://127.0.0.1:9000
    cluster_name: cluster_1
    table_engine:
      name: ReplicatedMergeTree
```

Link to tracking Issue: 
Resolves
https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/24649

* [connector/grafanacloud] add new connector component (#31726)

**Description:**
This adds a new connector for generating metrics from traces for use in
Grafana Cloud.

**Link to tracking Issue:**
https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/31647

**Testing:** unit testing

**Documentation:** README.md with example configuration.

---------

Signed-off-by: Robbie Lankford <robert.lankford@grafana.com>
Co-authored-by: Curtis Robert <crobert@splunk.com>
Co-authored-by: Juraci Paixão Kröhling <juraci.github@kroehling.de>

* [connector/datadog] Fix data race (#31921)

**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.-->
Fixes data race issue introduced in the prior PR for container Tags. 

https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/31642

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

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

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

* [chore] lint fixes in cmd/telemetrygen & cmd/opampsupervisor (#31932)

**Description:** <Describe what has changed.>
- Linting Errors: 

[https://productionresul…
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
…#31478)

**Description:**

Add Sumo Logic Extension to contrib executable. Fixes open-telemetry#29601

**Link to tracking Issue:** open-telemetry#29601

**Testing:** N/A

**Documentation:**

`metadata.yaml`

---------

Signed-off-by: Dominik Rosiek <drosiek@sumologic.com>
Co-authored-by: Andrzej Stencel <astencel@sumologic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Accepted Component New component has been sponsored Vendor-Specific Component New component that interfaces with a vendor API and will be maintained by the vendor.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants