forked from open-telemetry/opentelemetry-collector-contrib
-
Notifications
You must be signed in to change notification settings - Fork 2
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
Merge main to prod #5244
Merged
Merged
Merge main to prod #5244
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…#29775) **Description:** Identified and fixed an issue with the function responsible for querying storage metrics in `client.go`. The issue was that `sql.Rows.Scan()` was receiving a `float64` instead of an `int64` as previously thought and so trying to copy the column values into the provided variable pointers was causing a type error. To fix this the type of the variables passed into `sql.Rows.Scan()` was changed to `float64` and then recast as `int64` when inserting into the metric interface. This made more sense than potentially breaking existing pipelines by changing the metric type to `double` especially since the values for these metrics is always an integer (even if the database itself stores them as a float). Fixes open-telemetry#29750 **Testing:** Modified tests to expect float values from the mock database
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | golang.org/x/net | require | minor | `v0.18.0` -> `v0.19.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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/Azure/azure-kusto-go](https://togithub.com/Azure/azure-kusto-go) | require | minor | `v0.14.2` -> `v0.15.0` | | [github.com/Azure/azure-sdk-for-go/sdk/azcore](https://togithub.com/Azure/azure-sdk-for-go) | require | patch | `v1.9.0` -> `v1.9.1` | --- > [!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.15.0`](https://togithub.com/Azure/azure-kusto-go/releases/tag/v0.15.0) [Compare Source](https://togithub.com/Azure/azure-kusto-go/compare/v0.14.2...v0.15.0) ##### Changed (BREAKING) - Queries are no longer progressive by default. - `ResultsProgressiveDisable()` has been removed. - Use `ResultsProgressiveEnabled()` to enable progressive queries. ##### Added - Add file options: RawDataSize, CompressionType - New package ingest/ingestoptions now contains Compression properties (in the future will hold DataFormat) ##### Fixed - String quoting in default value of query parameters </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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
**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.--> There's a combination of bugs currently existing in `get-codeowners.sh` and the `Mark issues as stale` workflow. This implements proposed solution 2 of open-telemetry#29744 - Match component against beginning of line in code owners. **Issues** Resolves open-telemetry#29744 **Testing** Basic spot checking script: ``` COMPONENTS=("azure" "processor/resourcedetection" "processor/resourcedetectionprocessor" "test" "testbed" "extension/observer" "internal/k8stest" "extension/encoding" "flaky" "pkg/translator" "tools" ) for EXAMPLE_COMPONENT in ${COMPONENTS[@]}; do OWNERS=$(COMPONENT=${EXAMPLE_COMPONENT} bash ".github/workflows/scripts/get-codeowners.sh") echo $EXAMPLE_COMPONENT: $OWNERS done ``` Output: ``` azure: processor/resourcedetection: @Aneurysm9 @dashpole processor/resourcedetectionprocessor: @Aneurysm9 @dashpole test: testbed: @open-telemetry/collector-approvers extension/observer: @dmitryax @rmfitzpatrick internal/k8stest: @crobert-1 extension/encoding: @atoulme @dao-jun @dmitryax @MovieStoreGuy @VihasMakwana flaky: pkg/translator: tools: ``` Reference [CODEOWNERS](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/.github/CODEOWNERS) as source of truth. --------- Co-authored-by: Evan Bradley <11745660+evan-bradley@users.noreply.github.com>
…pen-telemetry#29790) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [google.golang.org/genproto/googleapis/rpc](https://togithub.com/googleapis/go-genproto) | require | digest | `989df2b` -> `995d672` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
…n-telemetry#29242) **Description:** Fix Memory usage for span metrics by limiting the number of exemplars per unique dimensions set/metric key
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | golang.org/x/sys | require | minor | `v0.14.0` -> `v0.15.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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
![image](https://github.com/open-telemetry/opentelemetry-collector-contrib/assets/12352919/0797a8fe-3eca-484d-b8d1-4f8a6e6994db) That comment will appear on every single renovatebot PR since we use opentlemetrybot to do the `make gotidy`. They don't provide value so this PR suppresses them.
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | golang.org/x/oauth2 | require | minor | `v0.14.0` -> `v0.15.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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
Renovatebot PRs can never pass the govulncheck until the `go mod tidy` commit comes in.
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [google.golang.org/grpc](https://togithub.com/grpc/grpc-go) | require | minor | `v1.59.0` -> `v1.60.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>grpc/grpc-go (google.golang.org/grpc)</summary> ### [`v1.60.0`](https://togithub.com/grpc/grpc-go/releases/tag/v1.60.0): Release 1.60.0 [Compare Source](https://togithub.com/grpc/grpc-go/compare/v1.59.0...v1.60.0) ### Security - credentials/tls: if not set, set TLS MinVersion to 1.2 and CipherSuites according to supported suites not forbidden by RFC7540. - This is a behavior change to bring us into better alignment with RFC 7540. ### API Changes - resolver: remove deprecated and experimental `ClientConn.NewServiceConfig` ([#&open-telemetry#8203;6784](https://togithub.com/grpc/grpc-go/issues/6784)) - client: remove deprecated `grpc.WithServiceConfig` `DialOption` ([#&open-telemetry#8203;6800](https://togithub.com/grpc/grpc-go/issues/6800)) ### Bug Fixes - client: fix race that could cause a deadlock while entering idle mode and receiving a name resolver update ([#&open-telemetry#8203;6804](https://togithub.com/grpc/grpc-go/issues/6804)) - client: always enable TCP keepalives with OS defaults ([#&open-telemetry#8203;6834](https://togithub.com/grpc/grpc-go/issues/6834)) - credentials/alts: fix a bug preventing ALTS from connecting to the metadata server if the default scheme is overridden ([#&open-telemetry#8203;6686](https://togithub.com/grpc/grpc-go/issues/6686)) - Special Thanks: [@&open-telemetry#8203;mjamaloney](https://togithub.com/mjamaloney) ### Behavior Changes - server: Do not return from Stop() or GracefulStop() until all resources are released ([#&open-telemetry#8203;6489](https://togithub.com/grpc/grpc-go/issues/6489)) - Special Thanks: [@&open-telemetry#8203;fho](https://togithub.com/fho) ### Documentation - codes: clarify that only codes defined by this package are valid and that users should not cast other values to `codes.Code` ([#&open-telemetry#8203;6701](https://togithub.com/grpc/grpc-go/issues/6701)) </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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/google/uuid](https://togithub.com/google/uuid) | require | minor | `v1.4.0` -> `v1.5.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>google/uuid (github.com/google/uuid)</summary> ### [`v1.5.0`](https://togithub.com/google/uuid/releases/tag/v1.5.0) [Compare Source](https://togithub.com/google/uuid/compare/v1.4.0...v1.5.0) ##### Features - Validate UUID without creating new UUID ([#&open-telemetry#8203;141](https://togithub.com/google/uuid/issues/141)) ([9ee7366](https://togithub.com/google/uuid/commit/9ee7366e66c9ad96bab89139418a713dc584ae29)) </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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
…telemetry#29817) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/logicmonitor/lm-data-sdk-go](https://togithub.com/logicmonitor/lm-data-sdk-go) | require | minor | `v1.0.0` -> `v1.1.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>logicmonitor/lm-data-sdk-go (github.com/logicmonitor/lm-data-sdk-go)</summary> ### [`v1.1.0`](https://togithub.com/logicmonitor/lm-data-sdk-go/releases/tag/v1.1.0) [Compare Source](https://togithub.com/logicmonitor/lm-data-sdk-go/compare/v1.0.0...v1.1.0) #### What's Changed - improvement(pinned dependency): Add third party hash to Github Actions by [@&open-telemetry#8203;anubhav6663](https://togithub.com/anubhav6663) in [https://github.com/logicmonitor/lm-data-sdk-go/pull/33](https://togithub.com/logicmonitor/lm-data-sdk-go/pull/33) - Bump go.opentelemetry.io/collector/pdata from 1.0.0-rc6 to 1.0.0-rc8 by [@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/logicmonitor/lm-data-sdk-go/pull/32](https://togithub.com/logicmonitor/lm-data-sdk-go/pull/32) - feature(sbom): Add sbom report. by [@&open-telemetry#8203;anubhav6663](https://togithub.com/anubhav6663) in [https://github.com/logicmonitor/lm-data-sdk-go/pull/34](https://togithub.com/logicmonitor/lm-data-sdk-go/pull/34) - Bump go.opentelemetry.io/collector/pdata from 1.0.0-rc8 to 1.0.0-rc9 by [@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/logicmonitor/lm-data-sdk-go/pull/36](https://togithub.com/logicmonitor/lm-data-sdk-go/pull/36) - Bump go.uber.org/multierr from 1.10.0 to 1.11.0 by [@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/logicmonitor/lm-data-sdk-go/pull/35](https://togithub.com/logicmonitor/lm-data-sdk-go/pull/35) - Bump go.opentelemetry.io/collector/pdata from 1.0.0-rc9 to 1.0.0-rcv0011 by [@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/logicmonitor/lm-data-sdk-go/pull/38](https://togithub.com/logicmonitor/lm-data-sdk-go/pull/38) - Support logs resource mapping config by [@&open-telemetry#8203;avadhut123pisal](https://togithub.com/avadhut123pisal) in [https://github.com/logicmonitor/lm-data-sdk-go/pull/44](https://togithub.com/logicmonitor/lm-data-sdk-go/pull/44) #### New Contributors - [@&open-telemetry#8203;anubhav6663](https://togithub.com/anubhav6663) made their first contribution in [https://github.com/logicmonitor/lm-data-sdk-go/pull/33](https://togithub.com/logicmonitor/lm-data-sdk-go/pull/33) **Full Changelog**: logicmonitor/lm-data-sdk-go@v1.0.0...v1.1.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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [otel/opentelemetry-collector-contrib](https://togithub.com/open-telemetry/opentelemetry-collector-releases) | minor | `0.90.1` -> `0.91.0` | | prom/prometheus | patch | `v2.48.0` -> `v2.48.1` | --- > [!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-contrib)</summary> ### [`v0.91.0`](https://togithub.com/open-telemetry/opentelemetry-collector-releases/releases/tag/v0.91.0) [Compare Source](https://togithub.com/open-telemetry/opentelemetry-collector-releases/compare/v0.90.1...v0.91.0) #### Changelog - [`92fb2b7`](https://togithub.com/open-telemetry/opentelemetry-collector-releases/commit/92fb2b7) Prepare 0.91.0 release ([#&open-telemetry#8203;438](https://togithub.com/open-telemetry/opentelemetry-collector-releases/issues/438)) - [`617da3b`](https://togithub.com/open-telemetry/opentelemetry-collector-releases/commit/617da3b) Bump anchore/sbom-action from 0.15.0 to 0.15.1 ([#&open-telemetry#8203;437](https://togithub.com/open-telemetry/opentelemetry-collector-releases/issues/437)) - [`f8a9ea7`](https://togithub.com/open-telemetry/opentelemetry-collector-releases/commit/f8a9ea7) \[chore] group collector digest updates ([#&open-telemetry#8203;435](https://togithub.com/open-telemetry/opentelemetry-collector-releases/issues/435)) </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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> 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 | Type | Update | Change | |---|---|---|---| | debian | final | major | `11` -> `12` | | rockylinux | final | major | `8.8` -> `9.3` | --- > [!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. 👻 **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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> 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 | Type | Update | Change | |---|---|---|---| | [github.com/aws/aws-sdk-go](https://togithub.com/aws/aws-sdk-go) | require | patch | `v1.49.0` -> `v1.49.1` | --- > [!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.49.1`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v1491-2023-12-12) [Compare Source](https://togithub.com/aws/aws-sdk-go/compare/v1.49.0...v1.49.1) \=== ##### Service Client Updates - `service/imagebuilder`: Updates service API, documentation, and paginators - `service/location`: Updates service API and documentation - `service/logs`: Updates service API and documentation - This release introduces the StartLiveTail API to tail ingested logs in near real time. </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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | alpine | final | minor | `3.18` -> `3.19` | | python | final | minor | `3.11-slim` -> `3.12-slim` | --- > [!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. 👻 **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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…-telemetry#29809) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/ClickHouse/clickhouse-go/v2](https://togithub.com/ClickHouse/clickhouse-go) | require | minor | `v2.15.0` -> `v2.16.0` | --- > [!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.16.0`](https://togithub.com/ClickHouse/clickhouse-go/blob/HEAD/CHANGELOG.md#v2160-2023-12-01----Release-notes-generated-using-configuration-in-githubreleaseyml-at-main---) [Compare Source](https://togithub.com/ClickHouse/clickhouse-go/compare/v2.15.0...v2.16.0) #### What's Changed ##### Enhancements 🎉 - Add sql.Valuer support for all types by [@&open-telemetry#8203;deankarn](https://togithub.com/deankarn) in [https://github.com/ClickHouse/clickhouse-go/pull/1144](https://togithub.com/ClickHouse/clickhouse-go/pull/1144) ##### Fixes 🐛 - Fix DateTime64 range to actual supported range per ClickHouse documentation by [@&open-telemetry#8203;phil-schreiber](https://togithub.com/phil-schreiber) in [https://github.com/ClickHouse/clickhouse-go/pull/1148](https://togithub.com/ClickHouse/clickhouse-go/pull/1148) #### New Contributors - [@&open-telemetry#8203;phil-schreiber](https://togithub.com/phil-schreiber) made their first contribution in [https://github.com/ClickHouse/clickhouse-go/pull/1148](https://togithub.com/ClickHouse/clickhouse-go/pull/1148) - [@&open-telemetry#8203;deankarn](https://togithub.com/deankarn) made their first contribution in [https://github.com/ClickHouse/clickhouse-go/pull/1144](https://togithub.com/ClickHouse/clickhouse-go/pull/1144) **Full Changelog**: ClickHouse/clickhouse-go@v2.15.0...v2.16.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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/daixiang0/gci](https://togithub.com/daixiang0/gci) | require | minor | `v0.11.2` -> `v0.12.0` | --- > [!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.12.0`](https://togithub.com/daixiang0/gci/releases/tag/v0.12.0) [Compare Source](https://togithub.com/daixiang0/gci/compare/v0.11.2...v0.12.0) #### What's Changed - Add Alias Section by [@&open-telemetry#8203;RyoKusnadi](https://togithub.com/RyoKusnadi) in [https://github.com/daixiang0/gci/pull/178](https://togithub.com/daixiang0/gci/pull/178) #### New Contributors - [@&open-telemetry#8203;RyoKusnadi](https://togithub.com/RyoKusnadi) made their first contribution in [https://github.com/daixiang0/gci/pull/178](https://togithub.com/daixiang0/gci/pull/178) **Full Changelog**: daixiang0/gci@v0.11.2...v0.12.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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
…29794) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [go.mongodb.org/mongo-driver](https://togithub.com/mongodb/mongo-go-driver) | require | patch | `v1.13.0` -> `v1.13.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>mongodb/mongo-go-driver (go.mongodb.org/mongo-driver)</summary> ### [`v1.13.1`](https://togithub.com/mongodb/mongo-go-driver/releases/tag/v1.13.1): MongoDB Go Driver 1.13.1 [Compare Source](https://togithub.com/mongodb/mongo-go-driver/compare/v1.13.0...v1.13.1) The MongoDB Go Driver Team is pleased to release version 1.13.1 of the official Go driver. #### Release Notes This release fixes a bug that can cause a panic when encoding or decoding Go `error` values as BSON and a bug that prevented `BSONOptions` from being applied when set on a `Database` or `Collection`. *** For a full list of tickets included in this release, please see the links below: - [Improvements](https://jira.mongodb.org/issues/?jql=project%3Dgodriver%20and%20type%3Dimprovement%20and%20status%20%3D%20Closed%20and%20fixVersion%3D1.13.1) - [Bugs](https://jira.mongodb.org/issues/?jql=project%3DGODRIVER%20and%20type%3DBug%20and%20status%3Dclosed%20and%20fixVersion%3D1.13.1) - [Tasks](https://jira.mongodb.org/issues/?jql=project%3Dgodriver%20and%20type%3D%22task%22%20and%20status%20%3D%20Closed%20and%20fixVersion%3D1.13.1) **Full Changelog**: [v1.13.0...1.13.1](https://togithub.com/mongodb/mongo-go-driver/compare/v1.13.0...v1.13.1) Documentation for the Go driver can be found on [pkg.go.dev](https://pkg.go.dev/go.mongodb.org/mongo-driver/mongo?tab=doc) and the [MongoDB documentation site](https://docs.mongodb.com/ecosystem/drivers/go/). BSON library documentation is also available on [pkg.go.dev](https://pkg.go.dev/go.mongodb.org/mongo-driver/bson?tab=doc). Questions and inquiries can be asked on the [MongoDB Developer Community](https://community.mongodb.com/). Bugs can be reported in the [Go Driver project in the MongoDB JIRA](https://jira.mongodb.org/secure/CreateIssue!default.jspa?pid=14289) where a list of [current issues](https://jira.mongodb.org/browse/GODRIVER) can be found. Your feedback on the Go driver is greatly appreciated! </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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
…try#29816) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/jaegertracing/jaeger](https://togithub.com/jaegertracing/jaeger) | require | minor | `v1.51.0` -> `v1.52.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>jaegertracing/jaeger (github.com/jaegertracing/jaeger)</summary> ### [`v1.52.0`](https://togithub.com/jaegertracing/jaeger/releases/tag/v1.52.0) [Compare Source](https://togithub.com/jaegertracing/jaeger/compare/v1.51.0...v1.52.0) ##### ✨ New Features: - Support Elasticsearch 8.x ([@&open-telemetry#8203;pmuls99](https://togithub.com/pmuls99) in [#&open-telemetry#8203;4829](https://togithub.com/jaegertracing/jaeger/pull/4829)) - Make ArchiveTrace button auto-configurable ([@&open-telemetry#8203;thecoons](https://togithub.com/thecoons) in [#&open-telemetry#8203;4913](https://togithub.com/jaegertracing/jaeger/pull/4913)) ##### 🐞 Bug fixes, Minor Improvements: - \[SPM] differentiate null from no error data ([@&open-telemetry#8203;albertteoh](https://togithub.com/albertteoh) in [#&open-telemetry#8203;4985](https://togithub.com/jaegertracing/jaeger/pull/4985)) - Fix example/grafana-integration ([@&open-telemetry#8203;angristan](https://togithub.com/angristan) in [#&open-telemetry#8203;4980](https://togithub.com/jaegertracing/jaeger/pull/4980)) - Fix (badger): add missing SamplingStoreFactory.CreateLock method ([@&open-telemetry#8203;slayer321](https://togithub.com/slayer321) in [#&open-telemetry#8203;4966](https://togithub.com/jaegertracing/jaeger/pull/4966)) - Normalize metric names due to breaking change ([@&open-telemetry#8203;albertteoh](https://togithub.com/albertteoh) in [#&open-telemetry#8203;4957](https://togithub.com/jaegertracing/jaeger/pull/4957)) - \[kafka-consumer] add topic name as a tag to offset manager metrics ([@&open-telemetry#8203;abliqo](https://togithub.com/abliqo) in [#&open-telemetry#8203;4951](https://togithub.com/jaegertracing/jaeger/pull/4951)) - Make UI placeholder more descriptive ([@&open-telemetry#8203;yurishkuro](https://togithub.com/yurishkuro) in [#&open-telemetry#8203;4937](https://togithub.com/jaegertracing/jaeger/pull/4937)) - Remove google.golang.org/protobuf dependency from model & storage apis ([@&open-telemetry#8203;akagami-harsh](https://togithub.com/akagami-harsh) in [#&open-telemetry#8203;4917](https://togithub.com/jaegertracing/jaeger/pull/4917)) - Read OTEL env vars for resource attributes ([@&open-telemetry#8203;yurishkuro](https://togithub.com/yurishkuro) in [#&open-telemetry#8203;4932](https://togithub.com/jaegertracing/jaeger/pull/4932)) ##### 🚧 Experimental Features: - Exp: rename jaeger-v2 binary to just jaeger ([@&open-telemetry#8203;yurishkuro](https://togithub.com/yurishkuro) in [#&open-telemetry#8203;4918](https://togithub.com/jaegertracing/jaeger/pull/4918)) ##### 👷 CI Improvements: - \[CI]: improve kafka integration test self-sufficiency ([@&open-telemetry#8203;RipulHandoo](https://togithub.com/RipulHandoo) in [#&open-telemetry#8203;4989](https://togithub.com/jaegertracing/jaeger/pull/4989)) - Separate all-in-one integration tests for v1 and v2 ([@&open-telemetry#8203;yurishkuro](https://togithub.com/yurishkuro) in [#&open-telemetry#8203;4968](https://togithub.com/jaegertracing/jaeger/pull/4968)) - Collect code coverage from integration tests and upload to codecov ([@&open-telemetry#8203;yurishkuro](https://togithub.com/yurishkuro) in [#&open-telemetry#8203;4964](https://togithub.com/jaegertracing/jaeger/pull/4964)) - \[CI/ES] use default template priorities ([@&open-telemetry#8203;yurishkuro](https://togithub.com/yurishkuro) in [#&open-telemetry#8203;4962](https://togithub.com/jaegertracing/jaeger/pull/4962)) - Unleash dependabot on docker files and add dependency review workflow ([@&open-telemetry#8203;step-security-bot](https://togithub.com/step-security-bot) in [#&open-telemetry#8203;4945](https://togithub.com/jaegertracing/jaeger/pull/4945)) - Split unit-test workflow into tests and lint ([@&open-telemetry#8203;MeenuyD](https://togithub.com/MeenuyD) in [#&open-telemetry#8203;4933](https://togithub.com/jaegertracing/jaeger/pull/4933)) - \[CI]: harden github actions ([@&open-telemetry#8203;step-security-bot](https://togithub.com/step-security-bot) in [#&open-telemetry#8203;4923](https://togithub.com/jaegertracing/jaeger/pull/4923)) - \[CI]: build jaeger v2 image on main branch runs ([@&open-telemetry#8203;yurishkuro](https://togithub.com/yurishkuro) in [#&open-telemetry#8203;4920](https://togithub.com/jaegertracing/jaeger/pull/4920)) - Exp: publish jaeger v2 image ([@&open-telemetry#8203;yurishkuro](https://togithub.com/yurishkuro) in [#&open-telemetry#8203;4919](https://togithub.com/jaegertracing/jaeger/pull/4919)) - \[CI]: set default to fix 'unbound variable' error on main ([@&open-telemetry#8203;yurishkuro](https://togithub.com/yurishkuro) in [#&open-telemetry#8203;4916](https://togithub.com/jaegertracing/jaeger/pull/4916)) - \[CI]: test jaeger-v2 as all-in-one in ci ([@&open-telemetry#8203;yurishkuro](https://togithub.com/yurishkuro) in [#&open-telemetry#8203;4890](https://togithub.com/jaegertracing/jaeger/pull/4890)) - Fix release script broken by recent linting cleanup ([@&open-telemetry#8203;yurishkuro](https://togithub.com/yurishkuro) in [#&open-telemetry#8203;4915](https://togithub.com/jaegertracing/jaeger/pull/4915)) ##### UI Changes - UI pinned to version [1.36.0](https://togithub.com/jaegertracing/jaeger-ui/blob/main/CHANGELOG.md#v1360-2023-12-05). </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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | golang.org/x/time | require | minor | `v0.4.0` -> `v0.5.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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
…y#29798) **Description:** Fixing lint issues when GOOS=windows. This is in preparation to eventually include lint with GOOS=windows as part of CI. **Link to tracking Issue:** N/A **Testing:** `make` on component folder on a Windows box **Documentation:** N/A
…try#29792) **Description:** Fixing lint issues when GOOS=windows. This is in preparation to eventually include lint with GOOS=windows as part of CI. **Link to tracking Issue:** N/A **Testing:** `make` on component folder on a Windows box **Documentation:** N/A
…pen-telemetry#29733) **Description:** This PR adds support for resource mapping config for logs. To make the resource mapping for logs flexible, LogicMonitor platform expects some params to be present in the log ingestion request. We have changed the exporter configuration to accept that configuration. **Link to tracking Issue:** open-telemetry#29732 **Testing:** Unit test cases were added. Also did the functional testing for the log ingestion with the newly added config. **Documentation:** As per the LogicMonitor's [Log Ingestion documentation](https://www.logicmonitor.com/support/lm-logs/sending-logs-to-the-lm-logs-ingestion-api), if more than one resource property exists, only the first property will be mapped. In case of OTLP logs, there can be multiple resource attributes and its order also cannot be guaranteed. Recently, the LogicMonitor has made the resource mapping for logs more flexible. With that, any of the resource attributes present in the log matches can be considered for resource mapping. But, this is not the default behaviour. In order to make the resource mapping flexible, you can configure the resource_mapping_op in the LogicMonitor's exporter. ``` exporters: logicmonitor: ... logs: resource_mapping_op: "OR" ``` The value for resource_mapping_op can be AND or OR. The values are case-insensitive.
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/DataDog/agent-payload/v5](https://togithub.com/DataDog/agent-payload) | require | patch | `v5.0.89` -> `v5.0.101` | | [github.com/DataDog/datadog-agent/pkg/proto](https://togithub.com/DataDog/datadog-agent) | require | patch | `v0.50.0-devel` -> `v0.50.0-rc.7` | | [github.com/DataDog/datadog-agent/pkg/proto](https://togithub.com/DataDog/datadog-agent) | require | patch | `v0.50.0-rc.1` -> `v0.50.0-rc.7` | | [github.com/DataDog/datadog-agent/pkg/trace](https://togithub.com/DataDog/datadog-agent) | require | patch | `v0.50.0-rc.1` -> `v0.50.0-rc.7` | | [github.com/DataDog/datadog-api-client-go/v2](https://togithub.com/DataDog/datadog-api-client-go) | require | minor | `v2.18.0` -> `v2.20.0` | | [github.com/DataDog/gohai](https://togithub.com/DataDog/gohai) | require | digest | `1776f9b` -> `4316413` | | [github.com/DataDog/opentelemetry-mapping-go/pkg/inframetadata](https://togithub.com/DataDog/opentelemetry-mapping-go) | require | minor | `v0.8.1` -> `v0.9.0` | | [github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes](https://togithub.com/DataDog/opentelemetry-mapping-go) | require | minor | `v0.8.3` -> `v0.9.0` | | [github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/logs](https://togithub.com/DataDog/opentelemetry-mapping-go) | require | minor | `v0.8.3` -> `v0.9.0` | | [github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/metrics](https://togithub.com/DataDog/opentelemetry-mapping-go) | require | minor | `v0.8.1` -> `v0.9.0` | | [github.com/DataDog/opentelemetry-mapping-go/pkg/quantile](https://togithub.com/DataDog/opentelemetry-mapping-go) | require | minor | `v0.8.1` -> `v0.9.0` | --- > [!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.101`](https://togithub.com/DataDog/agent-payload/releases/tag/v5.0.101) [Compare Source](https://togithub.com/DataDog/agent-payload/compare/v5.0.100...v5.0.101) #### What's Changed - Add metrics origin product, service and category by [@&open-telemetry#8203;mx-psi](https://togithub.com/mx-psi) in [https://github.com/DataDog/agent-payload/pull/280](https://togithub.com/DataDog/agent-payload/pull/280) #### New Contributors - [@&open-telemetry#8203;mx-psi](https://togithub.com/mx-psi) made their first contribution in [https://github.com/DataDog/agent-payload/pull/280](https://togithub.com/DataDog/agent-payload/pull/280) **Full Changelog**: DataDog/agent-payload@v5.0.100...v5.0.101 ### [`v5.0.100`](https://togithub.com/DataDog/agent-payload/releases/tag/v5.0.100) [Compare Source](https://togithub.com/DataDog/agent-payload/compare/v5.0.99...v5.0.100) #### What's Changed - Add container memory request to process payload by [@&open-telemetry#8203;vboulineau](https://togithub.com/vboulineau) in [https://github.com/DataDog/agent-payload/pull/278](https://togithub.com/DataDog/agent-payload/pull/278) **Full Changelog**: DataDog/agent-payload@v5.0.99...v5.0.100 ### [`v5.0.99`](https://togithub.com/DataDog/agent-payload/releases/tag/v5.0.99) [Compare Source](https://togithub.com/DataDog/agent-payload/compare/v5.0.98...v5.0.99) #### What's Changed - \[OTEL-941] Upgrade gogo/protobuf to v1.3.2 by [@&open-telemetry#8203;songy23](https://togithub.com/songy23) in [https://github.com/DataDog/agent-payload/pull/273](https://togithub.com/DataDog/agent-payload/pull/273) #### New Contributors - [@&open-telemetry#8203;songy23](https://togithub.com/songy23) made their first contribution in [https://github.com/DataDog/agent-payload/pull/273](https://togithub.com/DataDog/agent-payload/pull/273) **Full Changelog**: DataDog/agent-payload@v5.0.98...v5.0.99 ### [`v5.0.98`](https://togithub.com/DataDog/agent-payload/releases/tag/v5.0.98) [Compare Source](https://togithub.com/DataDog/agent-payload/compare/v5.0.97...v5.0.98) #### What's Changed - Add cpuRequest field to container payload by [@&open-telemetry#8203;vboulineau](https://togithub.com/vboulineau) in [https://github.com/DataDog/agent-payload/pull/276](https://togithub.com/DataDog/agent-payload/pull/276) **Full Changelog**: DataDog/agent-payload@v5.0.97...v5.0.98 ### [`v5.0.97`](https://togithub.com/DataDog/agent-payload/releases/tag/v5.0.97) [Compare Source](https://togithub.com/DataDog/agent-payload/compare/v5.0.96...v5.0.97) #### What's Changed - add SBOM status to SBOM payload by [@&open-telemetry#8203;AliDatadog](https://togithub.com/AliDatadog) in [https://github.com/DataDog/agent-payload/pull/274](https://togithub.com/DataDog/agent-payload/pull/274) - Add heartbeat and hash fields to SBOM by [@&open-telemetry#8203;lebauce](https://togithub.com/lebauce) in [https://github.com/DataDog/agent-payload/pull/275](https://togithub.com/DataDog/agent-payload/pull/275) #### New Contributors - [@&open-telemetry#8203;lebauce](https://togithub.com/lebauce) made their first contribution in [https://github.com/DataDog/agent-payload/pull/275](https://togithub.com/DataDog/agent-payload/pull/275) **Full Changelog**: DataDog/agent-payload@v5.0.96...v5.0.97 ### [`v5.0.96`](https://togithub.com/DataDog/agent-payload/releases/tag/v5.0.96) [Compare Source](https://togithub.com/DataDog/agent-payload/compare/v5.0.95...v5.0.96) #### What's Changed - Add tags to cr/crds by [@&open-telemetry#8203;JLineaweaver](https://togithub.com/JLineaweaver) in [https://github.com/DataDog/agent-payload/pull/271](https://togithub.com/DataDog/agent-payload/pull/271) **Full Changelog**: DataDog/agent-payload@v5.0.95...v5.0.96 ### [`v5.0.95`](https://togithub.com/DataDog/agent-payload/releases/tag/v5.0.95) [Compare Source](https://togithub.com/DataDog/agent-payload/compare/v5.0.94...v5.0.95) #### What's Changed - \[CWS] add 64bits Cookie by [@&open-telemetry#8203;safchain](https://togithub.com/safchain) in [https://github.com/DataDog/agent-payload/pull/270](https://togithub.com/DataDog/agent-payload/pull/270) #### New Contributors - [@&open-telemetry#8203;safchain](https://togithub.com/safchain) made their first contribution in [https://github.com/DataDog/agent-payload/pull/270](https://togithub.com/DataDog/agent-payload/pull/270) **Full Changelog**: DataDog/agent-payload@v5.0.94...v5.0.95 ### [`v5.0.94`](https://togithub.com/DataDog/agent-payload/releases/tag/v5.0.94) [Compare Source](https://togithub.com/DataDog/agent-payload/compare/v5.0.93...v5.0.94) #### What's Changed - Adding new SBOM Source Type by [@&open-telemetry#8203;juli1](https://togithub.com/juli1) in [https://github.com/DataDog/agent-payload/pull/269](https://togithub.com/DataDog/agent-payload/pull/269) - Generate gostreamer code for process protobuf by [@&open-telemetry#8203;leeavital](https://togithub.com/leeavital) in [https://github.com/DataDog/agent-payload/pull/264](https://togithub.com/DataDog/agent-payload/pull/264) #### New Contributors - [@&open-telemetry#8203;juli1](https://togithub.com/juli1) made their first contribution in [https://github.com/DataDog/agent-payload/pull/269](https://togithub.com/DataDog/agent-payload/pull/269) **Full Changelog**: DataDog/agent-payload@v5.0.93...v5.0.94 ### [`v5.0.93`](https://togithub.com/DataDog/agent-payload/releases/tag/v5.0.93) [Compare Source](https://togithub.com/DataDog/agent-payload/compare/v5.0.92...v5.0.93) #### What's Changed - Add section for publishing changes by [@&open-telemetry#8203;robertjli](https://togithub.com/robertjli) in [https://github.com/DataDog/agent-payload/pull/268](https://togithub.com/DataDog/agent-payload/pull/268) - \[orchestration] Add Horizontal Pod Autoscaler by [@&open-telemetry#8203;stzou](https://togithub.com/stzou) in [https://github.com/DataDog/agent-payload/pull/266](https://togithub.com/DataDog/agent-payload/pull/266) #### New Contributors - [@&open-telemetry#8203;stzou](https://togithub.com/stzou) made their first contribution in [https://github.com/DataDog/agent-payload/pull/266](https://togithub.com/DataDog/agent-payload/pull/266) **Full Changelog**: DataDog/agent-payload@v5.0.92...v5.0.93 ### [`v5.0.92`](https://togithub.com/DataDog/agent-payload/releases/tag/v5.0.92) [Compare Source](https://togithub.com/DataDog/agent-payload/compare/v5.0.91...v5.0.92) #### What's Changed - \[process] Add comm field to command model by [@&open-telemetry#8203;robertjli](https://togithub.com/robertjli) in [https://github.com/DataDog/agent-payload/pull/267](https://togithub.com/DataDog/agent-payload/pull/267) #### New Contributors - [@&open-telemetry#8203;robertjli](https://togithub.com/robertjli) made their first contribution in [https://github.com/DataDog/agent-payload/pull/267](https://togithub.com/DataDog/agent-payload/pull/267) **Full Changelog**: DataDog/agent-payload@v5.0.91...v5.0.92 ### [`v5.0.91`](https://togithub.com/DataDog/agent-payload/releases/tag/v5.0.91) [Compare Source](https://togithub.com/DataDog/agent-payload/compare/v5.0.90...v5.0.91) #### What's Changed - connections: add GRPC protocol by [@&open-telemetry#8203;Yumasi](https://togithub.com/Yumasi) in [https://github.com/DataDog/agent-payload/pull/263](https://togithub.com/DataDog/agent-payload/pull/263) #### New Contributors - [@&open-telemetry#8203;Yumasi](https://togithub.com/Yumasi) made their first contribution in [https://github.com/DataDog/agent-payload/pull/263](https://togithub.com/DataDog/agent-payload/pull/263) **Full Changelog**: DataDog/agent-payload@v5.0.90...v5.0.91 ### [`v5.0.90`](https://togithub.com/DataDog/agent-payload/releases/tag/v5.0.90) [Compare Source](https://togithub.com/DataDog/agent-payload/compare/v5.0.89...v5.0.90) #### What's Changed - Mark yaml as deprecated by [@&open-telemetry#8203;mfpierre](https://togithub.com/mfpierre) in [https://github.com/DataDog/agent-payload/pull/260](https://togithub.com/DataDog/agent-payload/pull/260) - \[CWS] Move is_exec_child field to the ProcessInfo structure by [@&open-telemetry#8203;Gui774ume](https://togithub.com/Gui774ume) in [https://github.com/DataDog/agent-payload/pull/262](https://togithub.com/DataDog/agent-payload/pull/262) **Full Changelog**: DataDog/agent-payload@v5.0.89...v5.0.90 </details> <details> <summary>DataDog/datadog-api-client-go (github.com/DataDog/datadog-api-client-go/v2)</summary> ### [`v2.20.0`](https://togithub.com/DataDog/datadog-api-client-go/releases/tag/v2.20.0) [Compare Source](https://togithub.com/DataDog/datadog-api-client-go/compare/v2.19.0...v2.20.0) <!-- Release notes generated using configuration in .github/release.yml at v2.20.0 --> #### What's Changed ##### Fixed - Fix Powerpack schema by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2262](https://togithub.com/DataDog/datadog-api-client-go/pull/2262) ##### Added - Add support for projected-cost endpoint by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2245](https://togithub.com/DataDog/datadog-api-client-go/pull/2245) - Document missing incident fields by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2268](https://togithub.com/DataDog/datadog-api-client-go/pull/2268) - Add active billing dimensions to usage metering by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2288](https://togithub.com/DataDog/datadog-api-client-go/pull/2288) - Add Cost Attribution To Usage Metering Public Beta Documentation by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2273](https://togithub.com/DataDog/datadog-api-client-go/pull/2273) - Update spec to include new DORA API endpoints by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2287](https://togithub.com/DataDog/datadog-api-client-go/pull/2287) - Add support to patch Synthetics test with partial data using JSON Patch by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2281](https://togithub.com/DataDog/datadog-api-client-go/pull/2281) - Document new api/app key schemas by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2267](https://togithub.com/DataDog/datadog-api-client-go/pull/2267) - Document new field `filters` for `CloudWorkloadSecurityAgentRule` by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2289](https://togithub.com/DataDog/datadog-api-client-go/pull/2289) - Live and historical custom timeseries docs by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2279](https://togithub.com/DataDog/datadog-api-client-go/pull/2279) - Add week_to_date and month_to_date to widget livespan by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2282](https://togithub.com/DataDog/datadog-api-client-go/pull/2282) - Use request data for undo operations in tests when response empty by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2256](https://togithub.com/DataDog/datadog-api-client-go/pull/2256) - Document `included_keywords` in `ListStandardPatterns` response by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2292](https://togithub.com/DataDog/datadog-api-client-go/pull/2292) - Document fields `remote_config_read_enabled` and `category` by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2290](https://togithub.com/DataDog/datadog-api-client-go/pull/2290) - Update Azure Spec to include Resource Collection by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2298](https://togithub.com/DataDog/datadog-api-client-go/pull/2298) - Allow creation of Application Security detection rules from the v2 API by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2300](https://togithub.com/DataDog/datadog-api-client-go/pull/2300) - Add Okta Integration APIs by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2280](https://togithub.com/DataDog/datadog-api-client-go/pull/2280) - Remove unstable flag for Events v2 api by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2306](https://togithub.com/DataDog/datadog-api-client-go/pull/2306) **Full Changelog**: DataDog/datadog-api-client-go@v2.19.0...v2.20.0 ### [`v2.19.0`](https://togithub.com/DataDog/datadog-api-client-go/releases/tag/v2.19.0) [Compare Source](https://togithub.com/DataDog/datadog-api-client-go/compare/v2.18.0...v2.19.0) <!-- Release notes generated using configuration in .github/release.yml at v2.19.0 --> #### What's Changed ##### Fixed - Remove notify_no_data default by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2242](https://togithub.com/DataDog/datadog-api-client-go/pull/2242) - Fix SecurityMonitoringSignalAttribute field name by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2249](https://togithub.com/DataDog/datadog-api-client-go/pull/2249) - Fix typo in service definition field by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2266](https://togithub.com/DataDog/datadog-api-client-go/pull/2266) ##### Added - Update documentation for Cloud SIEM by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2234](https://togithub.com/DataDog/datadog-api-client-go/pull/2234) - Add containers API spec by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2235](https://togithub.com/DataDog/datadog-api-client-go/pull/2235) - Add serverless apm to usage attribution api by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2240](https://togithub.com/DataDog/datadog-api-client-go/pull/2240) - Document missing parameters by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2198](https://togithub.com/DataDog/datadog-api-client-go/pull/2198) - Powerpack Live Span Support by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2247](https://togithub.com/DataDog/datadog-api-client-go/pull/2247) - Add Amazon EventBridge endpoints to AWS Integration API by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2236](https://togithub.com/DataDog/datadog-api-client-go/pull/2236) - Add Container App filters to Azure API by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2217](https://togithub.com/DataDog/datadog-api-client-go/pull/2217) - Add UUID format support by [@&open-telemetry#8203;HantingZhang2](https://togithub.com/HantingZhang2) in [https://github.com/DataDog/datadog-api-client-go/pull/2253](https://togithub.com/DataDog/datadog-api-client-go/pull/2253) - Add new UA products to usage metering docs by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2251](https://togithub.com/DataDog/datadog-api-client-go/pull/2251) - Cleanup linter warnings by [@&open-telemetry#8203;skarimo](https://togithub.com/skarimo) in [https://github.com/DataDog/datadog-api-client-go/pull/2258](https://togithub.com/DataDog/datadog-api-client-go/pull/2258) - Add scorecards endpoints by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2259](https://togithub.com/DataDog/datadog-api-client-go/pull/2259) - Document top list widget style by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2243](https://togithub.com/DataDog/datadog-api-client-go/pull/2243) - Add optional group-bys support to security signals by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2260](https://togithub.com/DataDog/datadog-api-client-go/pull/2260) ##### Changed - Add Beta Banner to Send Pipeline Events Endpoint by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2248](https://togithub.com/DataDog/datadog-api-client-go/pull/2248) - Remove endpoint for mute or unmute a finding and add support for bulk mute findings endpoint by [@&open-telemetry#8203;api-clients-generation-pipeline](https://togithub.com/api-clients-generation-pipeline) in [https://github.com/DataDog/datadog-api-client-go/pull/2244](https://togithub.com/DataDog/datadog-api-client-go/pull/2244) - Place `goccy/go-json` behind built tags and revert default encoder to `encoder/json` package by [@&open-telemetry#8203;skarimo](https://togithub.com/skarimo) in [https://github.com/DataDog/datadog-api-client-go/pull/2270](https://togithub.com/DataDog/datadog-api-client-go/pull/2270) **Full Changelog**: DataDog/datadog-api-client-go@v2.18.0...v2.19.0 </details> <details> <summary>DataDog/opentelemetry-mapping-go (github.com/DataDog/opentelemetry-mapping-go/pkg/inframetadata)</summary> ### [`v0.9.0`](https://togithub.com/DataDog/opentelemetry-mapping-go/blob/HEAD/CHANGELOG.md#v090) ##### 🛑 Breaking changes 🛑 - `pkg/metrics`: Remove `WithResourceAttributesAsTags()` and `translatorConfig.ResourceAttributesAsTags` ([#&open-telemetry#8203;219](https://togithub.com/DataDog/opentelemetry-mapping-go/issues/219)) - `pkg/otlp/metrics`: Change signature of `NewTranslator` to accept `component.TelemetrySettings` instead of `zap.Logger` ([#&open-telemetry#8203;218](https://togithub.com/DataDog/opentelemetry-mapping-go/issues/218)) ##### 💡 Enhancements 💡 - `pkg/otlp/logs`: DataDog log timestamp (ie. '[@&open-telemetry#8203;timestamp](https://togithub.com/timestamp)') now includes milliseconds. ([#&open-telemetry#8203;152](https://togithub.com/DataDog/opentelemetry-mapping-go/issues/152)) - `pkg/otlp/metric`: Add `datadog.otlp_translator.metrics.missing_source` counter, which counts the number of metrics that are missing a source (e.g. hostname). ([#&open-telemetry#8203;220](https://togithub.com/DataDog/opentelemetry-mapping-go/issues/220)) - `pkg/inframetadata`: Add support for GOOS and GOARCH values ([#&open-telemetry#8203;185](https://togithub.com/DataDog/opentelemetry-mapping-go/issues/185)) ##### 🧰 Bug fixes 🧰 - `pkg/otlp/metrics`: Removes runtime metric mapping for process.runtime.jvm.gc.duration -> jvm.gc.parnew.time ([#&open-telemetry#8203;213](https://togithub.com/DataDog/opentelemetry-mapping-go/issues/213)) ### [`v0.8.3`](https://togithub.com/DataDog/opentelemetry-mapping-go/blob/HEAD/CHANGELOG.md#v083) ##### 💡 Enhancements 💡 - `pkg/otlp/logs`: Add support for nested log attributes. ([#&open-telemetry#8203;207](https://togithub.com/DataDog/opentelemetry-mapping-go/issues/207)) ### [`v0.8.2`](https://togithub.com/DataDog/opentelemetry-mapping-go/blob/HEAD/CHANGELOG.md#v082) ##### 💡 Enhancements 💡 - `pkg/otlp/metrics`: Add support for metrics origin in `Dimensions`. ([#&open-telemetry#8203;204](https://togithub.com/DataDog/opentelemetry-mapping-go/issues/204)) </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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Co-authored-by: Yang Song <yang.song@datadoghq.com> Co-authored-by: Pablo Baeyens <pablo.baeyens@datadoghq.com>
…9785) **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.--> Bump opentelemetry-mapping-go modules to v0.9.0. This includes: - DataDog/opentelemetry-mapping-go/pull/218 and DataDog/opentelemetry-mapping-go/pull/220 - DataDog/opentelemetry-mapping-go/pull/219 - DataDog/opentelemetry-mapping-go/pull/213 - DataDog/opentelemetry-mapping-go/pull/202
**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.--> A bug was introduced in open-telemetry#29746 where we did an explicit match on the entire component name. This resulted in never having multiple matches for a single component. We only would check for a component type appended to the component if there were multiple results, but we still need to check with the component type appended to the end, regardless of results. **Testing:** <Describe what testing was performed and which tests were added.> Found in open-telemetry#29845. I've added every valid component determined by `get-components.sh` to my test, as well as some invalid ones. ``` flaky: test: azure: tools: cmd/configschema: @mx-psi @dmitryax @pmcollins cmd/githubgen: @atoulme cmd/mdatagen: @dmitryax cmd/opampsupervisor: @evan-bradley @atoulme @tigrannajaryan cmd/otelcontribcol: cmd/oteltestbedcol: cmd/telemetrygen: @mx-psi @codeboten confmap/provider/s3provider: @Aneurysm9 connector/countconnector: @djaglowski @jpkrohling connector/datadogconnector: @mx-psi @gbbr @dineshg13 connector/exceptionsconnector: @jpkrohling @marctc connector/failoverconnector: @djaglowski @fatsheep9146 connector/routingconnector: @jpkrohling @mwear connector/servicegraphconnector: @jpkrohling @mapno connector/spanmetricsconnector: @albertteoh examples/demo: @open-telemetry/collector-approvers exporter/alertmanagerexporter: @jpkrohling @sokoide @mcube8 exporter/alibabacloudlogserviceexporter: @shabicheng @kongluoxing @qiansheng91 exporter/awscloudwatchlogsexporter: @boostchicken @bryan-aguilar @rapphil exporter/awsemfexporter: @Aneurysm9 @shaochengwang @mxiamxia @bryan-aguilar exporter/awskinesisexporter: @Aneurysm9 @MovieStoreGuy exporter/awss3exporter: @atoulme @pdelewski exporter/awsxrayexporter: @wangzlei @srprash exporter/azuredataexplorerexporter: @asaharn @ag-ramachandran exporter/azuremonitorexporter: @pcwiese exporter/carbonexporter: @aboguszewski-sumo exporter/cassandraexporter: @atoulme @emreyalvac exporter/clickhouseexporter: @hanjm @dmitryax @Frapschen exporter/coralogixexporter: @povilasv @matej-g exporter/datadogexporter: @mx-psi @gbbr @dineshg13 @liustanley @songy23 @mackjmr exporter/datasetexporter: @atoulme @martin-majlis-s1 @zdaratom @tomaz-s1 exporter/dynatraceexporter: @dyladan @arminru @evan-bradley exporter/elasticsearchexporter: @JaredTan95 exporter/f5cloudexporter: @gramidt exporter/fileexporter: @atingchen exporter/googlecloudexporter: @aabmass @dashpole @jsuereth @punya @damemi @psx95 exporter/googlecloudpubsubexporter: @alexvanboxel exporter/googlemanagedprometheusexporter: @aabmass @dashpole @jsuereth @punya @damemi @psx95 exporter/honeycombmarkerexporter: @TylerHelmuth @fchikwekwe exporter/influxdbexporter: @jacobmarble exporter/instanaexporter: @jpkrohling @hickeyma exporter/kafkaexporter: @pavolloffay @MovieStoreGuy exporter/kineticaexporter: @am-kinetica @TylerHelmuth exporter/loadbalancingexporter: @jpkrohling exporter/logicmonitorexporter: @bogdandrutu @khyatigandhi6 @avadhut123pisal exporter/logzioexporter: @Doron-Bargo @yotamloe exporter/lokiexporter: @gramidt @gouthamve @jpkrohling @mar4uk exporter/mezmoexporter: @dashpole @billmeyer @gjanco exporter/opencensusexporter: @open-telemetry/collector-approvers exporter/opensearchexporter: @Aneurysm9 @MitchellGale @MaxKsyunz @YANG-DB exporter/prometheusexporter: @Aneurysm9 exporter/prometheusremotewriteexporter: @Aneurysm9 @rapphil exporter/pulsarexporter: @dmitryax @dao-jun exporter/sapmexporter: @dmitryax @atoulme exporter/sentryexporter: @AbhiPrasad exporter/signalfxexporter: @dmitryax @crobert-1 exporter/skywalkingexporter: @liqiangz exporter/splunkhecexporter: @atoulme @dmitryax exporter/sumologicexporter: @sumo-drosiek exporter/syslogexporter: @kkujawa-sumo @rnishtala-sumo @astencel-sumo exporter/tanzuobservabilityexporter: @oppegard @thepeterstone @keep94 exporter/tencentcloudlogserviceexporter: @wgliang @yiyang5055 exporter/zipkinexporter: @MovieStoreGuy @astencel-sumo @crobert-1 extension/asapauthextension: @jamesmoessis @MovieStoreGuy extension/awsproxy: @Aneurysm9 @mxiamxia extension/basicauthextension: @jpkrohling @svrakitin @frzifus extension/bearertokenauthextension: @jpkrohling @frzifus extension/encoding: @atoulme @dao-jun @dmitryax @MovieStoreGuy @VihasMakwana extension/encoding/jaegerencodingextension: @MovieStoreGuy @atoulme extension/encoding/jsonlogencodingextension: @VihasMakwana @atoulme extension/encoding/otlpencodingextension: @dao-jun @VihasMakwana extension/encoding/textencodingextension: @MovieStoreGuy @atoulme extension/encoding/zipkinencodingextension: @MovieStoreGuy @dao-jun extension/headerssetterextension: @jpkrohling extension/healthcheckextension: @jpkrohling extension/httpforwarder: @atoulme @rmfitzpatrick extension/jaegerremotesampling: @yurishkuro @frzifus extension/oauth2clientauthextension: @pavankrish123 @jpkrohling extension/observer: @dmitryax @rmfitzpatrick extension/observer/dockerobserver: @MovieStoreGuy extension/observer/ecsobserver: @dmitryax @rmfitzpatrick extension/observer/ecstaskobserver: @rmfitzpatrick extension/observer/hostobserver: @MovieStoreGuy extension/observer/k8sobserver: @rmfitzpatrick @dmitryax extension/oidcauthextension: @jpkrohling extension/opampextension: @portertech @evan-bradley @tigrannajaryan extension/pprofextension: @MovieStoreGuy extension/remotetapextension: @atoulme extension/sigv4authextension: @Aneurysm9 @erichsueh3 extension/storage: @dmitryax @atoulme @djaglowski extension/storage/dbstorage: @dmitryax @atoulme extension/storage/filestorage: @djaglowski internal/aws: @Aneurysm9 @mxiamxia internal/collectd: @atoulme internal/coreinternal: @open-telemetry/collector-approvers internal/datadog: @mx-psi @gbbr @dineshg13 internal/docker: @rmfitzpatrick @jamesmoessis internal/filter: @open-telemetry/collector-approvers internal/k8sconfig: @dmitryax internal/k8stest: @crobert-1 internal/kafka: @pavolloffay @MovieStoreGuy internal/kubelet: @dmitryax internal/metadataproviders: @Aneurysm9 @dashpole internal/sharedcomponent: @open-telemetry/collector-approvers internal/splunk: @dmitryax internal/tools: pkg/batchperresourceattr: @atoulme @dmitryax pkg/batchpersignal: @jpkrohling pkg/experimentalmetricmetadata: @rmfitzpatrick pkg/golden: @djaglowski @atoulme pkg/ottl: @TylerHelmuth @kentquirk @bogdandrutu @evan-bradley pkg/pdatatest: @djaglowski @fatsheep9146 pkg/pdatautil: @dmitryax pkg/resourcetotelemetry: @mx-psi pkg/stanza: @djaglowski pkg/translator/azure: @open-telemetry/collector-approvers @atoulme @cparkins pkg/translator/jaeger: @open-telemetry/collector-approvers @frzifus pkg/translator/loki: @gouthamve @jpkrohling @mar4uk pkg/translator/opencensus: @open-telemetry/collector-approvers pkg/translator/prometheus: @dashpole @bertysentry pkg/translator/prometheusremotewrite: @Aneurysm9 pkg/translator/signalfx: @dmitryax pkg/translator/skywalking: @JaredTan95 pkg/translator/zipkin: @MovieStoreGuy @astencel-sumo @crobert-1 pkg/winperfcounters: @dashpole @Mrod1598 @BinaryFissionGames processor/attributesprocessor: @boostchicken processor/cumulativetodeltaprocessor: @TylerHelmuth processor/datadogprocessor: @mx-psi @gbbr @dineshg13 processor/deltatorateprocessor: @Aneurysm9 processor/filterprocessor: @TylerHelmuth @boostchicken processor/groupbyattrsprocessor: @rnishtala-sumo processor/groupbytraceprocessor: @jpkrohling processor/k8sattributesprocessor: @dmitryax @rmfitzpatrick @fatsheep9146 @TylerHelmuth processor/logstransformprocessor: @djaglowski @dehaansa processor/metricsgenerationprocessor: @Aneurysm9 processor/metricstransformprocessor: @dmitryax processor/probabilisticsamplerprocessor: @jpkrohling processor/redactionprocessor: @leonsp-ai @dmitryax @mx-psi @TylerHelmuth processor/remotetapprocessor: @pmcollins processor/resourcedetectionprocessor: @Aneurysm9 @dashpole processor/resourcedetectionprocessor/internal/azure: @mx-psi processor/resourcedetectionprocessor/internal/heroku: @atoulme processor/resourcedetectionprocessor/internal/openshift: @frzifus processor/resourceprocessor: @dmitryax processor/routingprocessor: @jpkrohling processor/schemaprocessor: @MovieStoreGuy processor/servicegraphprocessor: @jpkrohling @mapno processor/spanmetricsprocessor: @albertteoh processor/spanprocessor: @boostchicken processor/sumologicprocessor: @aboguszewski-sumo @astencel-sumo @sumo-drosiek processor/tailsamplingprocessor: @jpkrohling processor/transformprocessor: @TylerHelmuth @kentquirk @bogdandrutu @evan-bradley receiver/activedirectorydsreceiver: @djaglowski @BinaryFissionGames receiver/aerospikereceiver: @djaglowski @antonblock receiver/apachereceiver: @djaglowski receiver/apachesparkreceiver: @djaglowski @Caleb-Hurshman @mrsillydog receiver/awscloudwatchmetricsreceiver: @jpkrohling receiver/awscloudwatchreceiver: @djaglowski @schmikei receiver/awscontainerinsightreceiver: @Aneurysm9 @pxaws receiver/awsecscontainermetricsreceiver: @Aneurysm9 receiver/awsfirehosereceiver: @Aneurysm9 receiver/awsxrayreceiver: @wangzlei @srprash receiver/azureblobreceiver: @eedorenko @mx-psi receiver/azureeventhubreceiver: @atoulme @djaglowski receiver/azuremonitorreceiver: @altuner @codeboten receiver/bigipreceiver: @djaglowski @StefanKurek receiver/carbonreceiver: @aboguszewski-sumo receiver/chronyreceiver: @MovieStoreGuy @jamesmoessis receiver/cloudflarereceiver: @dehaansa @djaglowski receiver/cloudfoundryreceiver: @agoallikmaa @pellared @crobert-1 receiver/collectdreceiver: @atoulme receiver/couchdbreceiver: @djaglowski receiver/datadogreceiver: @boostchicken @gouthamve @jpkrohling @MovieStoreGuy receiver/dockerstatsreceiver: @rmfitzpatrick @jamesmoessis receiver/elasticsearchreceiver: @djaglowski @BinaryFissionGames receiver/expvarreceiver: @jamesmoessis @MovieStoreGuy receiver/filelogreceiver: @djaglowski receiver/filereceiver: @pmcollins @djaglowski receiver/filestatsreceiver: @atoulme receiver/flinkmetricsreceiver: @JonathanWamsley @djaglowski receiver/fluentforwardreceiver: @dmitryax receiver/gitproviderreceiver: @adrielp @astencel-sumo receiver/googlecloudpubsubreceiver: @alexvanboxel receiver/googlecloudspannerreceiver: @architjugran @varunraiko @kiranmayib receiver/haproxyreceiver: @atoulme @MovieStoreGuy receiver/hostmetricsreceiver: @dmitryax @braydonk receiver/httpcheckreceiver: @codeboten receiver/iisreceiver: @Mrod1598 @djaglowski receiver/influxdbreceiver: @jacobmarble receiver/jaegerreceiver: @yurishkuro receiver/jmxreceiver: @rmfitzpatrick receiver/journaldreceiver: @sumo-drosiek @djaglowski receiver/k8sclusterreceiver: @dmitryax @TylerHelmuth @povilasv receiver/k8seventsreceiver: @dmitryax @TylerHelmuth receiver/k8sobjectsreceiver: @dmitryax @hvaghani221 @TylerHelmuth receiver/kafkametricsreceiver: @dmitryax receiver/kafkareceiver: @pavolloffay @MovieStoreGuy receiver/kubeletstatsreceiver: @dmitryax @TylerHelmuth receiver/lokireceiver: @mar4uk @jpkrohling receiver/memcachedreceiver: @djaglowski receiver/mongodbatlasreceiver: @djaglowski @schmikei receiver/mongodbreceiver: @djaglowski @schmikei receiver/mysqlreceiver: @djaglowski receiver/nginxreceiver: @djaglowski receiver/nsxtreceiver: @dashpole @schmikei receiver/opencensusreceiver: @open-telemetry/collector-approvers receiver/oracledbreceiver: @dmitryax @crobert-1 @atoulme receiver/otlpjsonfilereceiver: @djaglowski @atoulme receiver/podmanreceiver: @rogercoll receiver/postgresqlreceiver: @djaglowski receiver/prometheusreceiver: @Aneurysm9 @dashpole receiver/pulsarreceiver: @dmitryax @dao-jun receiver/purefareceiver: @jpkrohling @dgoscn @chrroberts-pure receiver/purefbreceiver: @jpkrohling @dgoscn @chrroberts-pure receiver/rabbitmqreceiver: @djaglowski @cpheps receiver/receivercreator: @rmfitzpatrick receiver/redisreceiver: @dmitryax @hughesjj receiver/riakreceiver: @djaglowski @armstrmi receiver/saphanareceiver: @dehaansa receiver/sapmreceiver: @atoulme receiver/signalfxreceiver: @dmitryax receiver/simpleprometheusreceiver: @fatsheep9146 receiver/skywalkingreceiver: @JaredTan95 receiver/snmpreceiver: @djaglowski @StefanKurek @tamir-michaeli receiver/snowflakereceiver: @dmitryax @shalper2 receiver/solacereceiver: @djaglowski @mcardy receiver/splunkenterprisereceiver: @shalper2 @MovieStoreGuy @greatestusername receiver/splunkhecreceiver: @atoulme receiver/sqlqueryreceiver: @dmitryax @pmcollins receiver/sqlserverreceiver: @djaglowski @StefanKurek receiver/sshcheckreceiver: @nslaughter @codeboten receiver/statsdreceiver: @jmacd @dmitryax receiver/syslogreceiver: @djaglowski receiver/tcplogreceiver: @djaglowski receiver/udplogreceiver: @djaglowski receiver/vcenterreceiver: @djaglowski @schmikei receiver/wavefrontreceiver: @samiura receiver/webhookeventreceiver: @atoulme @shalper2 receiver/windowseventlogreceiver: @djaglowski @armstrmi @pjanotti receiver/windowsperfcountersreceiver: @dashpole receiver/zipkinreceiver: @MovieStoreGuy @astencel-sumo @crobert-1 receiver/zookeeperreceiver: @djaglowski testbed: @open-telemetry/collector-approvers testbed/mockdatareceivers/mockawsxrayreceiver: @wangzlei @srprash testbed/mockdatasenders/mockdatadogagentexporter: @boostchicken reports/distributions/core.yaml: reports/distributions/contrib.yaml: reports/distributions/aws.yaml: reports/distributions/grafana.yaml: reports/distributions/observiq.yaml: reports/distributions/redhat.yaml: reports/distributions/splunk.yaml: @atoulme @crobert-1 @dmitryax @hughesjj @jeffreyc-splunk @jinja2 @jvoravong @panotti @rmfitzpatrick @samiura reports/distributions/sumo.yaml: reports/distributions/liatrio.yaml: ```
) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/vmware/govmomi](https://togithub.com/vmware/govmomi) | require | minor | `v0.33.1` -> `v0.34.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>vmware/govmomi (github.com/vmware/govmomi)</summary> ### [`v0.34.0`](https://togithub.com/vmware/govmomi/releases/tag/v0.34.0) [Compare Source](https://togithub.com/vmware/govmomi/compare/v0.33.1...v0.34.0) <a name="v0.34.0"></a> #### [Release v0.34.0](https://togithub.com/vmware/govmomi/compare/v0.33.1...v0.34.0) > Release Date: 2023-12-12 ##### 🐞 Fix - \[[`980d22d`](https://togithub.com/vmware/govmomi/commit/980d22d6)] expose util for rest status return ([#&open-telemetry#8203;3309](https://togithub.com/vmware/govmomi/issues/3309)) ##### 💫 API Changes - \[[`31423b7`](https://togithub.com/vmware/govmomi/commit/31423b78)] add object.Datastore.FindInventoryPath ([#&open-telemetry#8203;3267](https://togithub.com/vmware/govmomi/issues/3267)) - \[[`d52f8ee`](https://togithub.com/vmware/govmomi/commit/d52f8ee3)] add Content Library update session file APIs ([#&open-telemetry#8203;3258](https://togithub.com/vmware/govmomi/issues/3258)) ##### 💫 `vcsim` (Simulator) - \[[`4a09f19`](https://togithub.com/vmware/govmomi/commit/4a09f19d)] add PbmQueryAssociatedProfiles method - \[[`4cbd642`](https://togithub.com/vmware/govmomi/commit/4cbd6424)] Fix \[BUG] vcsim raises TypeError for RemoveSnapshotTask ([#&open-telemetry#8203;3298](https://togithub.com/vmware/govmomi/issues/3298)) - \[[`04ccf69`](https://togithub.com/vmware/govmomi/commit/04ccf69e)] handle HostNotConnected when saving inventory - \[[`2f1fefa`](https://togithub.com/vmware/govmomi/commit/2f1fefae)] fix MAC Addresses to be unique ([#&open-telemetry#8203;3279](https://togithub.com/vmware/govmomi/issues/3279)) - \[[`e19137f`](https://togithub.com/vmware/govmomi/commit/e19137f5)] propagate VMwareDVSConfigSpec in CreateDVS_Task ([#&open-telemetry#8203;3264](https://togithub.com/vmware/govmomi/issues/3264)) - \[[`a092311`](https://togithub.com/vmware/govmomi/commit/a0923119)] emit DVS and Portgroup create events ([#&open-telemetry#8203;3263](https://togithub.com/vmware/govmomi/issues/3263)) - \[[`c8a2fc2`](https://togithub.com/vmware/govmomi/commit/c8a2fc2e)] Fix PropertyCollector to handle empty property ([#&open-telemetry#8203;3275](https://togithub.com/vmware/govmomi/issues/3275)) ##### 🧹 Chore - \[[`a5899af`](https://togithub.com/vmware/govmomi/commit/a5899afa)] Update version.go for v0.34.0 #####⚠️ BREAKING ##### 📖 Commits - \[[`a5899af`](https://togithub.com/vmware/govmomi/commit/a5899afa)] chore: Update version.go for v0.34.0 - \[[`980d22d`](https://togithub.com/vmware/govmomi/commit/980d22d6)] fix: expose util for rest status return ([#&open-telemetry#8203;3309](https://togithub.com/vmware/govmomi/issues/3309)) - \[[`4a09f19`](https://togithub.com/vmware/govmomi/commit/4a09f19d)] vcsim: add PbmQueryAssociatedProfiles method - \[[`e39527d`](https://togithub.com/vmware/govmomi/commit/e39527d4)] build(deps): bump actions/stale from 8 to 9 - \[[`4cbd642`](https://togithub.com/vmware/govmomi/commit/4cbd6424)] vcsim: Fix \[BUG] vcsim raises TypeError for RemoveSnapshotTask ([#&open-telemetry#8203;3298](https://togithub.com/vmware/govmomi/issues/3298)) - \[[`e9a782a`](https://togithub.com/vmware/govmomi/commit/e9a782a9)] build(deps): bump actions/setup-go from 4 to 5 - \[[`45188e1`](https://togithub.com/vmware/govmomi/commit/45188e1d)] Add default Historical Intervals to the simulator - \[[`04ccf69`](https://togithub.com/vmware/govmomi/commit/04ccf69e)] vcsim: handle HostNotConnected when saving inventory - \[[`2f1fefa`](https://togithub.com/vmware/govmomi/commit/2f1fefae)] vcsim: fix MAC Addresses to be unique ([#&open-telemetry#8203;3279](https://togithub.com/vmware/govmomi/issues/3279)) - \[[`d32be09`](https://togithub.com/vmware/govmomi/commit/d32be098)] simulator: fix dropped error - \[[`e19137f`](https://togithub.com/vmware/govmomi/commit/e19137f5)] vcsim: propagate VMwareDVSConfigSpec in CreateDVS_Task ([#&open-telemetry#8203;3264](https://togithub.com/vmware/govmomi/issues/3264)) - \[[`a092311`](https://togithub.com/vmware/govmomi/commit/a0923119)] vcsim: emit DVS and Portgroup create events ([#&open-telemetry#8203;3263](https://togithub.com/vmware/govmomi/issues/3263)) - \[[`31423b7`](https://togithub.com/vmware/govmomi/commit/31423b78)] api: add object.Datastore.FindInventoryPath ([#&open-telemetry#8203;3267](https://togithub.com/vmware/govmomi/issues/3267)) - \[[`c8a2fc2`](https://togithub.com/vmware/govmomi/commit/c8a2fc2e)] vcsim: Fix PropertyCollector to handle empty property ([#&open-telemetry#8203;3275](https://togithub.com/vmware/govmomi/issues/3275)) - \[[`d52f8ee`](https://togithub.com/vmware/govmomi/commit/d52f8ee3)] api: add Content Library update session file APIs ([#&open-telemetry#8203;3258](https://togithub.com/vmware/govmomi/issues/3258)) - \[[`3942d8f`](https://togithub.com/vmware/govmomi/commit/3942d8f6)] build(deps): bump github.com/google/uuid from 1.3.1 to 1.4.0 - \[[`09c7291`](https://togithub.com/vmware/govmomi/commit/09c72919)] Add additional PBM methods </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:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
songy23
requested review from
mx-psi,
gbbr,
dineshg13,
liustanley and
mackjmr
as code owners
December 13, 2023 14:48
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.