forked from open-telemetry/opentelemetry-collector-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
[chore] Upgrade contrib version #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or 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
…#42435) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description logs now report scope name and version <!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. --> #### Link to tracking issue Fixes open-telemetry#42426 <!--Describe what testing was performed and which tests were added.--> #### Testing added a new test `TestScopeNameAndVersion` in `receiver/k8seventsreceiver/k8s_event_to_logdata_test.go` Co-authored-by: Christos Markou <chrismarkou92@gmail.com>
…emetry#42477) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description This PR adds support for resource detection in Hetzner Cloud. I have not added the Hetzner cloud into semantic conventions, but I can open a PR for it. <!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. --> #### Link to tracking issue Fixes open-telemetry#42476 <!--Describe what testing was performed and which tests were added.--> #### Testing Added tests to cover most of the cases, and I personally tested on a Hetzner server. ``` 2025-09-03T17:31:23.666+0100 info service@v0.134.0/service.go:211 Starting otelcontribcol... {"resource": {"service.instance.id": "f054fbb3-ad03-4aef-8c7a-1e38550cfec7", "service.name": "otelcontribcol", "service.version": "0.134.0-dev"}, "Version": "0.134.0-dev", "NumCPU": 8} 2025-09-03T17:31:23.666+0100 info extensions/extensions.go:41 Starting extensions... {"resource": {"service.instance.id": "f054fbb3-ad03-4aef-8c7a-1e38550cfec7", "service.name": "otelcontribcol", "service.version": "0.134.0-dev"}} 2025-09-03T17:31:23.666+0100 info internal/resourcedetection.go:137 began detecting resource information {"resource": {"service.instance.id": "f054fbb3-ad03-4aef-8c7a-1e38550cfec7", "service.name": "otelcontribcol", "service.version": "0.134.0-dev"}, "otelcol.component.id": "resourcedetection", "otelcol.component.kind": "processor", "otelcol.pipeline.id": "metrics", "otelcol.signal": "metrics"} 2025-09-03T17:31:23.672+0100 info internal/resourcedetection.go:188 detected resource information {"resource": {"service.instance.id": "f054fbb3-ad03-4aef-8c7a-1e38550cfec7", "service.name": "otelcontribcol", "service.version": "0.134.0-dev"}, "otelcol.component.id": "resourcedetection", "otelcol.component.kind": "processor", "otelcol.pipeline.id": "metrics", "otelcol.signal": "metrics", "resource": {"cloud.availability_zone":"nbg1-dc3","cloud.provider":"hetzner","cloud.region":"eu-central","host.id":"30727666","host.name":"vm1"}} 2025-09-03T17:31:23.672+0100 info service@v0.134.0/service.go:234 Everything is ready. Begin running and processing data. {"resource": {"service.instance.id": "f054fbb3-ad03-4aef-8c7a-1e38550cfec7", "service.name": "otelcontribcol", "service.version": "0.134.0-dev"}} 2025-09-03T17:31:24.673+0100 info Metrics {"resource": {"service.instance.id": "f054fbb3-ad03-4aef-8c7a-1e38550cfec7", "service.name": "otelcontribcol", "service.version": "0.134.0-dev"}, "otelcol.component.id": "debug", "otelcol.component.kind": "exporter", "otelcol.signal": "metrics", "resource metrics": 3, "metrics": 5, "data points": 73} 2025-09-03T17:31:24.673+0100 info ResourceMetrics #0 Resource SchemaURL: https://opentelemetry.io/schemas/1.9.0 Resource attributes: -> cloud.provider: Str(hetzner) -> host.id: Str(30727666) -> host.name: Str(vm1) -> cloud.region: Str(eu-central) -> cloud.availability_zone: Str(nbg1-dc3) ``` <!--Describe the documentation added.--> #### Documentation Updated the `README.md` with this new detector. <!--Please delete paragraphs that you did not use before submitting.--> --------- Signed-off-by: Paulo Dias <paulodias.gm@gmail.com>
…42264) This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/stretchr/testify](https://redirect.github.com/stretchr/testify) | `v1.10.0` -> `v1.11.1` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [github.com/stretchr/testify](https://redirect.github.com/stretchr/testify) | `v1.11.0` -> `v1.11.1` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>stretchr/testify (github.com/stretchr/testify)</summary> ### [`v1.11.1`](https://redirect.github.com/stretchr/testify/releases/tag/v1.11.1) [Compare Source](https://redirect.github.com/stretchr/testify/compare/v1.11.0...v1.11.1) This release fixes [#&open-telemetry#8203;1785](https://redirect.github.com/stretchr/testify/issues/1785) introduced in v1.11.0 where expected argument values implementing the stringer interface (`String() string`) with a method which mutates their value, when passed to mock.Mock.On (`m.On("Method", <expected>).Return()`) or actual argument values passed to mock.Mock.Called may no longer match one another where they previously did match. The behaviour prior to v1.11.0 where the stringer is always called is restored. Future testify releases may not call the stringer method at all in this case. #### What's Changed - Backport [#&open-telemetry#8203;1786](https://redirect.github.com/stretchr/testify/issues/1786) to release/1.11: mock: revert to pre-v1.11.0 argument matching behavior for mutating stringers by [@&open-telemetry#8203;brackendawson](https://redirect.github.com/brackendawson) in [#&open-telemetry#8203;1788](https://redirect.github.com/stretchr/testify/pull/1788) **Full Changelog**: <stretchr/testify@v1.11.0...v1.11.1> ### [`v1.11.0`](https://redirect.github.com/stretchr/testify/releases/tag/v1.11.0) [Compare Source](https://redirect.github.com/stretchr/testify/compare/v1.10.0...v1.11.0) #### What's Changed ##### Functional Changes v1.11.0 Includes a number of performance improvements. - Call stack perf change for CallerInfo by [@&open-telemetry#8203;mikeauclair](https://redirect.github.com/mikeauclair) in [#&open-telemetry#8203;1614](https://redirect.github.com/stretchr/testify/pull/1614) - Lazily render mock diff output on successful match by [@&open-telemetry#8203;mikeauclair](https://redirect.github.com/mikeauclair) in [#&open-telemetry#8203;1615](https://redirect.github.com/stretchr/testify/pull/1615) - assert: check early in Eventually, EventuallyWithT, and Never by [@&open-telemetry#8203;cszczepaniak](https://redirect.github.com/cszczepaniak) in [#&open-telemetry#8203;1427](https://redirect.github.com/stretchr/testify/pull/1427) - assert: add IsNotType by [@&open-telemetry#8203;bartventer](https://redirect.github.com/bartventer) in [#&open-telemetry#8203;1730](https://redirect.github.com/stretchr/testify/pull/1730) - assert.JSONEq: shortcut if same strings by [@&open-telemetry#8203;dolmen](https://redirect.github.com/dolmen) in [#&open-telemetry#8203;1754](https://redirect.github.com/stretchr/testify/pull/1754) - assert.YAMLEq: shortcut if same strings by [@&open-telemetry#8203;dolmen](https://redirect.github.com/dolmen) in [#&open-telemetry#8203;1755](https://redirect.github.com/stretchr/testify/pull/1755) - assert: faster and simpler isEmpty using reflect.Value.IsZero by [@&open-telemetry#8203;dolmen](https://redirect.github.com/dolmen) in [#&open-telemetry#8203;1761](https://redirect.github.com/stretchr/testify/pull/1761) - suite: faster methods filtering (internal refactor) by [@&open-telemetry#8203;dolmen](https://redirect.github.com/dolmen) in [#&open-telemetry#8203;1758](https://redirect.github.com/stretchr/testify/pull/1758) ##### Fixes - assert.ErrorAs: log target type by [@&open-telemetry#8203;craig65535](https://redirect.github.com/craig65535) in [#&open-telemetry#8203;1345](https://redirect.github.com/stretchr/testify/ 8000 pull/1345) - Fix failure message formatting for Positive and Negative asserts in [#&open-telemetry#8203;1062](https://redirect.github.com/stretchr/testify/pull/1062) - Improve ErrorIs message when error is nil but an error was expected by [@&open-telemetry#8203;tsioftas](https://redirect.github.com/tsioftas) in [#&open-telemetry#8203;1681](https://redirect.github.com/stretchr/testify/pull/1681) - fix Subset/NotSubset when calling with mixed input types by [@&open-telemetry#8203;siliconbrain](https://redirect.github.com/siliconbrain) in [#&open-telemetry#8203;1729](https://redirect.github.com/stretchr/testify/pull/1729) - Improve ErrorAs failure message when error is nil by [@&open-telemetry#8203;ccoVeille](https://redirect.github.com/ccoVeille) in [#&open-telemetry#8203;1734](https://redirect.github.com/stretchr/testify/pull/1734) - mock.AssertNumberOfCalls: improve error msg by [@&open-telemetry#8203;3scalation](https://redirect.github.com/3scalation) in [#&open-telemetry#8203;1743](https://redirect.github.com/stretchr/testify/pull/1743) ##### Documentation, Build & CI - docs: Fix typo in README by [@&open-telemetry#8203;alexandear](https://redirect.github.com/alexandear) in [#&open-telemetry#8203;1688](https://redirect.github.com/stretchr/testify/pull/1688) - Replace deprecated io/ioutil with io and os by [@&open-telemetry#8203;alexandear](https://redirect.github.com/alexandear) in [#&open-telemetry#8203;1684](https://redirect.github.com/stretchr/testify/pull/1684) - Document consequences of calling t.FailNow() by [@&open-telemetry#8203;greg0ire](https://redirect.github.com/greg0ire) in [#&open-telemetry#8203;1710](https://redirect.github.com/stretchr/testify/pull/1710) - chore: update docs for Unset [#&open-telemetry#8203;1621](https://redirect.github.com/stretchr/testify/issues/1621) by [@&open-telemetry#8203;techfg](https://redirect.github.com/techfg) in [#&open-telemetry#8203;1709](https://redirect.github.com/stretchr/testify/pull/1709) - README: apply gofmt to examples by [@&open-telemetry#8203;alexandear](https://redirect.github.com/alexandear) in [#&open-telemetry#8203;1687](https://redirect.github.com/stretchr/testify/pull/1687) - refactor: use %q and %T to simplify fmt.Sprintf by [@&open-telemetry#8203;alexandear](https://redirect.github.com/alexandear) in [#&open-telemetry#8203;1674](https://redirect.github.com/stretchr/testify/pull/1674) - Propose Christophe Colombier (ccoVeille) as approver by [@&open-telemetry#8203;brackendawson](https://redirect.github.com/brackendawson) in [#&open-telemetry#8203;1716](https://redirect.github.com/stretchr/testify/pull/1716) - Update documentation for the Error function in assert or require package by [@&open-telemetry#8203;architagr](https://redirect.github.com/architagr) in [#&open-telemetry#8203;1675](https://redirect.github.com/stretchr/testify/pull/1675) - assert: remove deprecated build constraints by [@&open-telemetry#8203;alexandear](https://redirect.github.com/alexandear) in [#&open-telemetry#8203;1671](https://redirect.github.com/stretchr/testify/pull/1671) - assert: apply gofumpt to internal test suite by [@&open-telemetry#8203;ccoVeille](https://redirect.github.com/ccoVeille) in [#&open-telemetry#8203;1739](https://redirect.github.com/stretchr/testify/pull/1739) - CI: fix shebang in .ci.\*.sh scripts by [@&open-telemetry#8203;dolmen](https://redirect.github.com/dolmen) in [#&open-telemetry#8203;1746](https://redirect.github.com/stretchr/testify/pull/1746) - assert,require: enable parallel testing on (almost) all top tests by [@&open-telemetry#8203;dolmen](https://redirect.github.com/dolmen) in [#&open-telemetry#8203;1747](https://redirect.github.com/stretchr/testify/pull/1747) - suite.Passed: add one more status test report by [@&open-telemetry#8203;Ararsa-Derese](https://redirect.github.com/Ararsa-Derese) in [#&open-telemetry#8203;1706](https://redirect.github.com/stretchr/testify/pull/1706) - Add Helper() method in internal mocks and assert.CollectT by [@&open-telemetry#8203;dolmen](https://redirect.github.com/dolmen) in [#&open-telemetry#8203;1423](https://redirect.github.com/stretchr/testify/pull/1423) - assert.Same/NotSame: improve usage of Sprintf by [@&open-telemetry#8203;ccoVeille](https://redirect.github.com/ccoVeille) in [#&open-telemetry#8203;1742](https://redirect.github.com/stretchr/testify/pull/1742) - mock: enable parallel testing on internal testsuite by [@&open-telemetry#8203;dolmen](https://redirect.github.com/dolmen) in [#&open-telemetry#8203;1756](https://redirect.github.com/stretchr/testify/pull/1756) - suite: cleanup use of 'testing' internals at runtime by [@&open-telemetry#8203;dolmen](https://redirect.github.com/dolmen) in [#&open-telemetry#8203;1751](https://redirect.github.com/stretchr/testify/pull/1751) - assert: check test failure message for Empty and NotEmpty by [@&open-telemetry#8203;ccoVeille](https://redirect.github.com/ccoVeille) in [#&open-telemetry#8203;1745](https://redirect.github.com/stretchr/testify/pull/1745) - deps: fix dependency cycle with objx (again) by [@&open-telemetry#8203;dolmen](https://redirect.github.com/dolmen) in [#&open-telemetry#8203;1567](https://redirect.github.com/stretchr/testify/pull/1567) - assert.Empty: comprehensive doc of "Empty"-ness rules by [@&open-telemetry#8203;dolmen](https://redirect.github.com/dolmen) in [#&open-telemetry#8203;1753](https://redirect.github.com/stretchr/testify/pull/1753) - doc: improve godoc of top level 'testify' package by [@&open-telemetry#8203;dolmen](https://redirect.github.com/dolmen) in [#&open-telemetry#8203;1760](https://redirect.github.com/stretchr/testify/pull/1760) - assert.ErrorAs: simplify retrieving the type name by [@&open-telemetry#8203;ccoVeille](https://redirect.github.com/ccoVeille) in [#&open-telemetry#8203;1740]( 8000 https://redirect.github.com/stretchr/testify/pull/1740) - assert.EqualValues: improve test coverage to 100% by [@&open-telemetry#8203;dolmen](https://redirect.github.com/dolmen) in [#&open-telemetry#8203;1763](https://redirect.github.com/stretchr/testify/pull/1763) - suite.Run: simplify running of Setup/TeardownSuite by [@&open-telemetry#8203;renzoarreaza](https://redirect.github.com/renzoarreaza) in [#&open-telemetry#8203;1769](https://redirect.github.com/stretchr/testify/pull/1769) - assert.CallerInfo: micro optimization by using LastIndexByte by [@&open-telemetry#8203;dolmen](https://redirect.github.com/dolmen) in [#&open-telemetry#8203;1767](https://redirect.github.com/stretchr/testify/pull/1767) - assert.CallerInfo: micro cleanup by [@&open-telemetry#8203;dolmen](https://redirect.github.com/dolmen) in [#&open-telemetry#8203;1768](https://redirect.github.com/stretchr/testify/pull/1768) - assert: refactor Test*FileExists and Test*DirExists tests to enable parallel testing by [@&open-telemetry#8203;dolmen](https://redirect.github.com/dolmen) in [#&open-telemetry#8203;1766](https://redirect.github.com/stretchr/testify/pull/1766) - suite.Run: refactor handling of stats for improved readability by [@&open-telemetry#8203;dolmen](https://redirect.github.com/dolmen) in [#&open-telemetry#8203;1764](https://redirect.github.com/stretchr/testify/pull/1764) - tests: improve captureTestingT helper by [@&open-telemetry#8203;ccoVeille](https://redirect.github.com/ccoVeille) in [#&open-telemetry#8203;1741](https://redirect.github.com/stretchr/testify/pull/1741) - build(deps): bump actions/checkout from 4 to 5 by [@&open-telemetry#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in [#&open-telemetry#8203;1778](https://redirect.github.com/stretchr/testify/pull/1778) #### New Contributors - [@&open-telemetry#8203;greg0ire](https://redirect.github.com/greg0ire) made their first contribution in [#&open-telemetry#8203;1710](https://redirect.github.com/stretchr/testify/pull/1710) - [@&open-telemetry#8203;techfg](https://redirect.github.com/techfg) made their first contribution in [#&open-telemetry#8203;1709](https://redirect.github.com/stretchr/testify/pull/1709) - [@&open-telemetry#8203;mikeauclair](https://redirect.github.com/mikeauclair) made their first contribution in [#&open-telemetry#8203;1614](https://redirect.github.com/stretchr/testify/pull/1614) - [@&open-telemetry#8203;cszczepaniak](https://redirect.github.com/cszczepaniak) made their first contribution in [#&open-telemetry#8203;1427](https://redirect.github.com/stretchr/testify/pull/1427) - [@&open-telemetry#8203;architagr](https://redirect.github.com/architagr) made their first contribution in [#&open-telemetry#8203;1675](https://redirect.github.com/stretchr/testify/pull/1675) - [@&open-telemetry#8203;tsioftas](https://redirect.github.com/tsioftas) made their first contribution in [#&open-telemetry#8203;1681](https://redirect.github.com/stretchr/testify/pull/1681) - [@&open-telemetry#8203;siliconbrain](https://redirect.github.com/siliconbrain) made their first contribution in [#&open-telemetry#8203;1729](https://redirect.github.com/stretchr/testify/pull/1729) - [@&open-telemetry#8203;bartventer](https://redirect.github.com/bartventer) made their first contribution in [#&open-telemetry#8203;1730](https://redirect.github.com/stretchr/testify/pull/1730) - [@&open-telemetry#8203;Ararsa-Derese](https://redirect.github.com/Ararsa-Derese) made their first contribution in [#&open-telemetry#8203;1706](https://redirect.github.com/stretchr/testify/pull/1706) - [@&open-telemetry#8203;renzoarreaza](https://redirect.github.com/renzoarreaza) made their first contribution in [#&open-telemetry#8203;1769](https://redirect.github.com/stretchr/testify/pull/1769) - [@&open-telemetry#8203;3scalation](https://redirect.github.com/3scalation) made their first contribution in [#&open-telemetry#8203;1743](https://redirect.github.com/stretchr/testify/pull/1743) **Full Changelog**: <stretchr/testify@v1.10.0...v1.11.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 these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi43IiwidXBkYXRlZEluVmVyIjoiNDEuOTEuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
…DME (open-telemetry#42547) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description It would be nice for the users to see a conversion example directly in README, so they have a better understanding about how the conversion works. <!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. --> #### Link to tracking issue Fixes open-telemetry#42512 Signed-off-by: odubajDT <ondrej.dubaj@dynatrace.com>
…aMetrics' feature gate (open-telemetry#42494) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description Adds a new `exporter.datadogexporter.InferIntervalForDeltaMetrics` feature gate. This feature gate will set the interval field for OTLP delta metrics when it can be inferred (i.e. when the difference between Timestamp and StartTimestamp is close enough to a whole number of seconds). Relates to [DataDog/opentelemetry-mapping-go/pull/765](DataDog/opentelemetry-mapping-go#765)
#### Description Upgrades the `github.com/DataDog/datadog-agent/comp/otelcol/otlp/testutil` dependency in the datadog exporter integration test, which fixes the failure in open-telemetry#42513.
…try#42555) Reverts open-telemetry#42532 we still need to identify the problem causing this, but this PR changed the behavior of the scoped-test run, which stopped reporting back in. Reverting the change is a possible fix. Running this revert PR to check if reverting helps and identifies for sure that it is the issue.
…ry#42551) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description <!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. --> Updates open-telemetry#42458 to adapt to stretchr/testify#1427
This PR updates the opentelemetry-collector modules to open-telemetry/opentelemetry-collector@3166bac --------- Signed-off-by: otelbot <197425009+otelbot@users.noreply.github.com> Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
This updates existing examples to remove the batch processor to reduce dependency on it. Part of open-telemetry/opentelemetry-collector#13766 Signed-off-by: alex boten <223565+codeboten@users.noreply.github.com>
Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description pins now-removed component announcement links to the tagged version where the components were announced <!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. --> #### Link to tracking issue Fixes https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/17561312676/job/49878257899?pr=42564 <!--Describe what testing was performed and which tests were added.--> #### Testing <!--Describe the documentation added.--> #### Documentation <!--Please delete paragraphs that you did not use before submitting.-->
…try#42574) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | golang | stage | digest | `5502b0e` -> `0caf875` | | golang | final | digest | `5502b0e` -> `0caf875` | --- > [!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 these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45Ny4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjk3LjEwIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…pen-telemetry#42572) Initial change open-telemetry#42532 to add Ubuntu to `scoped-tests` didn't take into account that it was necessary to preserve a job with name `scoped-tests` to satisfy merge requirements. Restores the initial change plus follows the pattern of other GH workflows in the repo that run jobs leveraging strategy/matrix. cc @mx-psi @atoulme
… to v0.1.167 (open-telemetry#42576) This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/huaweicloud/huaweicloud-sdk-go-v3](https://redirect.github.com/huaweicloud/huaweicloud-sdk-go-v3) | `v0.1.166` -> `v0.1.167` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>huaweicloud/huaweicloud-sdk-go-v3 (github.com/huaweicloud/huaweicloud-sdk-go-v3)</summary> ### [`v0.1.167`](https://redirect.github.com/huaweicloud/huaweicloud-sdk-go-v3/releases/tag/v0.1.167) [Compare Source](https://redirect.github.com/huaweicloud/huaweicloud-sdk-go-v3/compare/v0.1.166...v0.1.167) Release 0.1.167 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45Ny4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjk3LjEwIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com> Co-authored-by: Yang Song <songy23@users.noreply.github.com>
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/github-script](https://redirect.github.com/actions/github-script) | action | digest | `60a0d83` -> `f28e40c` | | [actions/github-script](https://redirect.github.com/actions/github-script) | action | minor | `v7.0.1` -> `v7.1.0` | | [codecov/codecov-action](https://redirect.github.com/codecov/codecov-action) | action | patch | `v5.5.0` -> `v5.5.1` | | [github/codeql-action](https://redirect.github.com/github/codeql-action) | action | patch | `v3.30.0` -> `v3.30.1` | | [github/codeql-action](https://redirect.github.com/github/codeql-action) | action | digest | `2d92b76` -> `f1f6e5f` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>actions/github-script (actions/github-script)</summary> ### [`v7.1.0`](https://redirect.github.com/actions/github-script/compare/v7.0.1...v7.1.0) [Compare Source](https://redirect.github.com/actions/github-script/compare/v7.0.1...v7.1.0) </details> <details> <summary>codecov/codecov-action (codecov/codecov-action)</summary> ### [`v5.5.1`](https://redirect.github.com/codecov/codecov-action/blob/HEAD/CHANGELOG.md#v551) [Compare Source](https://redirect.github.com/codecov/codecov-action/compare/v5.5.0...v5.5.1) ##### What's Changed - fix: overwrite pr number on fork by [@&open-telemetry#8203;thomasrockhu-codecov](https://redirect.github.com/thomasrockhu-codecov) in [#&open-telemetry#8203;1871](https://redirect.github.com/codecov/codecov-action/pull/1871) - build(deps): bump actions/checkout from 4.2.2 to 5.0.0 by [@&open-telemetry#8203;app/dependabot](https://redirect.github.com/app/dependabot) in [#&open-telemetry#8203;1868](https://redirect.github.com/codecov/codecov-action/pull/1868) - build(deps): bump github/codeql-action from 3.29.9 to 3.29.11 by [@&open-telemetry#8203;app/dependabot](https://redirect.github.com/app/dependabot) in [#&open-telemetry#8203;1867](https://redirect.github.com/codecov/codecov-action/pull/1867) - fix: update to use local app/ dir by [@&open-telemetry#8203;thomasrockhu-codecov](https://redirect.github.com/thomasrockhu-codecov) in [#&open-telemetry#8203;1872](https://redirect.github.com/codecov/codecov-action/pull/1872) - docs: fix typo in README by [@&open-telemetry#8203;datalater](https://redirect.github.com/datalater) in [#&open-telemetry#8203;1866](https://redirect.github.com/codecov/codecov-action/pull/1866) - Document a `codecov-cli` version reference example by [@&open-telemetry#8203;webknjaz](https://redirect.github.com/webknjaz) in [#&open-telemetry#8203;1774](https://redirect.github.com/codecov/codecov-action/pull/1774) - build(deps): bump github/codeql-action from 3.28.18 to 3.29.9 by [@&open-telemetry#8203;app/dependabot](https://redirect.github.com/app/dependabot) in [#&open-telemetry#8203;1861](https://redirect.github.com/codecov/codecov-action/pull/1861) - build(deps): bump ossf/scorecard-action from 2.4.1 to 2.4.2 by [@&open-telemetry#8203;app/dependabot](https://redirect.github.com/app/dependabot) in [#&open-telemetry#8203;1833](https://redirect.github.com/codecov/codecov-action/pull/1833) **Full Changelog**: <https://github.com/codecov/codecov-action/compare/v5.5.0..v5.5.1> </details> <details> <summary>github/codeql-action (github/codeql-action)</summary> ### [`v3.30.1`](https://redirect.github.com/github/codeql-action/compare/v3.30.0...v3.30.1) [Compare Source](https://redirect.github.com/github/codeql-action/compare/v3.30.0...v3.30.1) </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://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45Ny4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjk3LjEwIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Updates the semconv for telemetrygen to use 1.37.0 --------- Signed-off-by: alex boten <223565+codeboten@users.noreply.github.com> Co-authored-by: Pablo Baeyens <pbaeyens31+github@gmail.com>
…tencentcloud/common to v1.1.24 (open-telemetry#42589) This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common](https://redirect.github.com/tencentcloud/tencentcloud-sdk-go) | `v1.1.22` -> `v1.1.24` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>tencentcloud/tencentcloud-sdk-go (github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common)</summary> ### [`v1.1.24`](https://redirect.github.com/tencentcloud/tencentcloud-sdk-go/compare/v1.1.23...v1.1.24) [Compare Source](https://redirect.github.com/tencentcloud/tencentcloud-sdk-go/compare/v1.1.23...v1.1.24) ### [`v1.1.23`](https://redirect.github.com/tencentcloud/tencentcloud-sdk-go/compare/v1.1.22...v1.1.23) [Compare Source](https://redirect.github.com/tencentcloud/tencentcloud-sdk-go/compare/v1.1.22...v1.1.23) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45Ny4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjk3LjEwIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
….2 (open-telemetry#42579) This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/prometheus/client_golang](https://redirect.github.com/prometheus/client_golang) | `v1.23.0` -> `v1.23.2` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>prometheus/client_golang (github.com/prometheus/client_golang)</summary> ### [`v1.23.2`](https://redirect.github.com/prometheus/client_golang/releases/tag/v1.23.2): - 2025-09-05 [Compare Source](https://redirect.github.com/prometheus/client_golang/compare/v1.23.1...v1.23.2) This release is made to upgrade to prometheus/common v0.66.1, which drops the dependencies github.com/grafana/regexp and go.uber.org/atomic and replaces gopkg.in/yaml.v2 with go.yaml.in/yaml/v2 (a drop-in replacement). There are no functional changes. <details> <summary>All Changes</summary> - \[release-1.23] Upgrade to prometheus/common\@&open-telemetry#8203;v0.66.1 by [@&open-telemetry#8203;aknuds1](https://redirect.github.com/aknuds1) in [#&open-telemetry#8203;1869](https://redirect.github.com/prometheus/client_golang/pull/1869) - \[release-1.23] Cut v1.23.2 by [@&open-telemetry#8203;aknuds1](https://redirect.github.com/aknuds1) in [#&open-telemetry#8203;1870](https://redirect.github.com/prometheus/client_golang/pull/1870) </details> **Full Changelog**: <prometheus/client_golang@v1.23.1...v1.23.2> ### [`v1.23.1`](https://redirect.github.com/prometheus/client_golang/releases/tag/v1.23.1): - 2025-09-04 [Compare Source](https://redirect.github.com/prometheus/client_golang/compare/v1.23.0...v1.23.1) This release is made to be compatible with a backwards incompatible API change in prometheus/common v0.66.0. There are no functional changes. <details> <summary>All Changes</summary> * [release-1.23] Upgrade to prometheus/common v0.66 by @&open-telemetry#8203;aknuds1 in prometheus/client_golang#1866 * [release-1.23] Cut v1.23.1 by @&open-telemetry#8203;aknuds1 in prometheus/client_golang#1867 </details> **Full Changelog**: <prometheus/client_golang@v1.23.0...v1.23.1> </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45Ny4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjk3LjEwIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
…etry#42583) This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/SAP/go-hdb](https://redirect.github.com/SAP/go-hdb) | `v1.14.2` -> `v1.14.3` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>SAP/go-hdb (github.com/SAP/go-hdb)</summary> ### [`v1.14.3`](https://redirect.github.com/SAP/go-hdb/blob/HEAD/RELEASENOTES.md#v1143) [Compare Source](https://redirect.github.com/SAP/go-hdb/compare/v1.14.2...v1.14.3) - updated dependencies </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45Ny4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjk3LjEwIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description Add `S3PartitionTimezone` config value to be able to change the timezone used for time-based partitioning. <!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. --> #### Link to tracking issue Resolves open-telemetry#42319. <!--Describe what testing was performed and which tests were added.--> #### Testing Updated existing tests to include time location. <!--Describe the documentation added.--> #### Documentation Added new config value to README. <!--Please delete paragraphs that you did not use before submitting.--> --------- Co-authored-by: Antoine Toulme <antoine@toulme.name>
…ode (open-telemetry#42510) ## Description Fix a bug where the data stream attributes in `none` mapping mode is incorrectly prefixed. ## Link to tracking issue Fixes open-telemetry#42454. ## Testing Unit tests. --------- Co-authored-by: Vishal Raj <vishal.raj@elastic.co> Co-authored-by: Christos Markou <chrismarkou92@gmail.com> Co-authored-by: Carson Ip <carsonip@users.noreply.github.com>
…try#42582) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | golang | stage | digest | `0caf875` -> `d6bdb04` | | golang | final | digest | `0caf875` -> `d6bdb04` | --- > [!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 these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45Ny4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjk3LjEwIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…metry#42577) This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/jackc/pgx/v5](https://redirect.github.com/jackc/pgx) | `v5.7.5` -> `v5.7.6` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>jackc/pgx (github.com/jackc/pgx/v5)</summary> ### [`v5.7.6`](https://redirect.github.com/jackc/pgx/compare/v5.7.5...v5.7.6) [Compare Source](https://redirect.github.com/jackc/pgx/compare/v5.7.5...v5.7.6) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45Ny4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjk3LjEwIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com> Co-authored-by: Yang Song <songy23@users.noreply.github.com>
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github/codeql-action](https://redirect.github.com/github/codeql-action) | action | patch | `v3.30.1` -> `v3.30.2` | | [github/codeql-action](https://redirect.github.com/github/codeql-action) | action | digest | `f1f6e5f` -> `d3678e2` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>github/codeql-action (github/codeql-action)</summary> ### [`v3.30.2`](https://redirect.github.com/github/codeql-action/compare/v3.30.1...v3.30.2) [Compare Source](https://redirect.github.com/github/codeql-action/compare/v3.30.1...v3.30.2) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45Ny4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjk3LjEwIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…2596) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description Run the Go [modernize](https://pkg.go.dev/golang.org/x/tools/gopls/internal/analysis/modernize) tool. --------- Signed-off-by: Paulo Dias <paulodias.gm@gmail.com>
…y#42542) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description Added a new `modernize` make target to run the Go [modernize](https://pkg.go.dev/golang.org/x/tools/gopls/internal/analysis/modernize) tool. This isn’t part of CI, users need to run it manually when they want to apply modern Go patterns. <!--Please delete paragraphs that you did not use before submitting.--> --------- Signed-off-by: Paulo Dias <paulodias.gm@gmail.com>
…y#42533) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description This adds support to the supervisor for OpAMP heartbeats. Functionality is implemented in OpAMP Go, only need to set this capability to enable this. <!--Describe what testing was performed and which tests were added.--> #### Testing Added an e2e test to verify heartbeat behavior. <!--Describe the documentation added.--> #### Documentation Updated supervisor readme documentation.
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [otel/opentelemetry-collector](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases) | minor | `0.133.0` -> `0.135.0` | | [otel/opentelemetry-collector-contrib](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases) | minor | `0.133.0` -> `0.134.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)</summary> ### [`v0.135.0`](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/blob/HEAD/CHANGELOG.md#v01350) [Compare Source](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/compare/v0.134.1...v0.135.0) ### [`v0.134.1`](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/releases/tag/v0.134.1) [Compare Source](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/compare/v0.133.0...v0.134.1) Check the [v0.134.1 contrib changelog](https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/releases/tag/v0.134.1) and the [v0.134.1 core changelog](https://redirect.github.com/open-telemetry/opentelemetry-collector/releases/tag/v0.134.1) for changelogs on specific components. #### Changelog - [`1e3852f`](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/commit/1e3852fd04caa17bf46229a6ee4b4ad688d1cf30) \[chore] ignore service.version in comparison ([#&open-telemetry#8203;1159](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/issues/1159)) - [`23173dd`](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/commit/23173dd11ca0d3f2dee0491c7173972b1f4e8760) Use correct GORELEASE tags for all the gorelease actions. ([#&open-telemetry#8203;1158](https://redirect.github.com/open-telemetry/opentelemetry-collector-releases/issues/1158)) </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://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45Ny4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjk3LjEwIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Yang Song <songy23@users.noreply.github.com>
…en-telemetry#42977) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description open-telemetry/opentelemetry-collector#13756 added support for exposing metrics' stability level in the generated documentation. This PR makes use of this functionality. We start by setting the stability of all metrics to `development`. More info about levels can be found at https://github.com/open-telemetry/opentelemetry-specification/blob/v1.49.0/oteps/0232-maturity-of-otel.md#maturity-levels. Related to: - open-telemetry/opentelemetry-collector#11878 - open-telemetry/opentelemetry-collector#13297 - open-telemetry#35325 - open-telemetry#42809 <!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. --> #### Link to tracking issue Fixes ~ <!--Describe what testing was performed and which tests were added.--> #### Testing ~ <!--Describe the documentation added.--> #### Documentation Updated <!--Please delete paragraphs that you did not use before submitting.--> --------- Signed-off-by: ChrsMark <chrismarkou92@gmail.com>
…try#42988) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description open-telemetry/opentelemetry-collector#13756 added support for exposing metrics' stability level in the generated documentation. This PR makes use of this functionality. We start by setting the stability of all metrics to `development`. More info about levels can be found at https://github.com/open-telemetry/opentelemetry-specification/blob/v1.49.0/oteps/0232-maturity-of-otel.md#maturity-levels. Related to: - open-telemetry/opentelemetry-collector#11878 - open-telemetry/opentelemetry-collector#13297 - open-telemetry#35325 - open-telemetry#42809 <!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. --> #### Link to tracking issue Fixes ~ <!--Describe what testing was performed and which tests were added.--> #### Testing ~ <!--Describe the documentation added.--> #### Documentation Updated <!--Please delete paragraphs that you did not use before submitting.--> Signed-off-by: ChrsMark <chrismarkou92@gmail.com>
…#42994) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description open-telemetry/opentelemetry-collector#13756 added support for exposing metrics' stability level in the generated documentation. This PR makes use of this functionality. We start by setting the stability of all metrics to `development`. More info about levels can be found at https://github.com/open-telemetry/opentelemetry-specification/blob/v1.49.0/oteps/0232-maturity-of-otel.md#maturity-levels. Related to: - open-telemetry/opentelemetry-collector#11878 - open-telemetry/opentelemetry-collector#13297 - open-telemetry#35325 - open-telemetry#42809 <!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. --> #### Link to tracking issue Fixes ~ <!--Describe what testing was performed and which tests were added.--> #### Testing ~ <!--Describe the documentation added.--> #### Documentation Updated <!--Please delete paragraphs that you did not use before submitting.--> Signed-off-by: ChrsMark <chrismarkou92@gmail.com> Co-authored-by: Alex Boten <223565+codeboten@users.noreply.github.com>
) #### Description Simplify the code, and avoid a data race by ensuring that sync.WaitGroup.Add calls always come before the sync.WaitGroup.Wait call by closing the listener first on shutdown. #### Link to tracking issue Fixes open-telemetry#42878 #### Testing `go test -v -failfast -run Test_Server_ListenAndServe -count=1000 -race` #### Documentation N/A
…ed (open-telemetry#42999) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description Based on the discussion we had on the following [Slack thread](https://cloud-native.slack.com/archives/C07CCCMRXBK/p1758785169835369), we decided to propose adding the ability to skip the `codeowners` workflow if the related files are not changed at all. This will improve the CI performance a bit. Signed-off-by: Paulo Dias <paulodias.gm@gmail.com>
…emetry#42982) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description open-telemetry/opentelemetry-collector#13756 added support for exposing metrics' stability level in the generated documentation. This PR makes use of this functionality. We start by setting the stability of all metrics to `development`. More info about levels can be found at https://github.com/open-telemetry/opentelemetry-specification/blob/v1.49.0/oteps/0232-maturity-of-otel.md#maturity-levels. Related to: - open-telemetry/opentelemetry-collector#11878 - open-telemetry/opentelemetry-collector#13297 - open-telemetry#35325 - open-telemetry#42809 <!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. --> #### Link to tracking issue Fixes ~ <!--Describe what testing was performed and which tests were added.--> #### Testing ~ <!--Describe the documentation added.--> #### Documentation Updated <!--Please delete paragraphs that you did not use before submitting.--> Signed-off-by: ChrsMark <chrismarkou92@gmail.com>
…etry#42957) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description open-telemetry/opentelemetry-collector#13756 added support for exposing metrics' stability level in the generated documentation. This PR makes use of this functionality. We start by setting the stability of all metrics to `development`. More info about levels can be found at https://github.com/open-telemetry/opentelemetry-specification/blob/v1.49.0/oteps/0232-maturity-of-otel.md#maturity-levels. Related to: - open-telemetry/opentelemetry-collector#11878 - open-telemetry/opentelemetry-collector#13297 - open-telemetry#35325 - open-telemetry#42809 <!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. --> #### Link to tracking issue Fixes ~ <!--Describe what testing was performed and which tests were added.--> #### Testing ~ <!--Describe the documentation added.--> #### Documentation Updated <!--Please delete paragraphs that you did not use before submitting.--> Signed-off-by: ChrsMark <chrismarkou92@gmail.com>
…emetry#42920) Another small step to soon eventually fully enable Windows ARM in CI. - `GOTEST_OPT`: it can't contain `-race` on Windows ARM, this option is used by tests is CI. - `CGO_ENABLED`: although the target `buildtest` seems to be used only for mac runners in CI, for completeness, I'm making the target to correctly work on Windows ARM. --------- Co-authored-by: Andrew Wilkins <axwalk@gmail.com>
This PR updates the opentelemetry-collector modules to open-telemetry/opentelemetry-collector@0694086 --------- Signed-off-by: otelbot <197425009+otelbot@users.noreply.github.com> Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
…re gate to Beta (open-telemetry#42181) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description This PR moves the `receiver.kafkareceiver.UseFranzGo` feature gate to Beta, as it also improves the tests to work with both libraries (`sarama` and `franz-go`) while the feature gate is enabled by default. <!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. --> #### Link to tracking issue Fixes open-telemetry#42155 <!--Describe what testing was performed and which tests were added.--> #### Testing Improved the tests to work with both libraries (`sarama` and `franz-go`) while the feature gate is enabled by default. <!--Describe the documentation added.--> #### Documentation Updated the README.md with the reference for the users to opt out of using `franz-go`, disabling the feature gate. <!--Please delete paragraphs that you did not use before submitting.--> --------- Signed-off-by: Paulo Dias <paulodias.gm@gmail.com>
…etry#42938) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description open-telemetry/opentelemetry-collector#13756 added support for exposing metrics' stability level in the generated documentation. This PR makes use of this functionality. We start by setting the stability of all metrics to `development`. More info about levels can be found at https://github.com/open-telemetry/opentelemetry-specification/blob/v1.49.0/oteps/0232-maturity-of-otel.md#maturity-levels. Related to: - open-telemetry/opentelemetry-collector#11878 - open-telemetry/opentelemetry-collector#13297 - open-telemetry#35325 - open-telemetry#42809 <!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. --> #### Link to tracking issue Fixes ~ <!--Describe what testing was performed and which tests were added.--> #### Testing ~ <!--Describe the documentation added.--> #### Documentation Updated <!--Please delete paragraphs that you did not use before submitting.--> Signed-off-by: ChrsMark <chrismarkou92@gmail.com>
…43009) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description Removes the `suite` package dependency to make proper usage of `testify.EventuallyWithT` helper function. <!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. --> #### Link to tracking issue Fixes open-telemetry#42459 <!--Describe what testing was performed and which tests were added.--> #### Testing <!--Describe the documentation added.--> #### Documentation <!--Please delete paragraphs that you did not use before submitting.-->
…en-telemetry#43004) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description As per [t.Context()'s documentation](https://pkg.go.dev/testing#T.Context), ``` Context returns a context that is canceled just before Cleanup-registered functions are called. ``` Meaning, this context is already cancelled while calling `receiver.Shutdown(ctx)`. The `Shutdown` method might return `context cancelled` error and result in test case failure. Fix this by moving `Shutdown` into a `defer` call. <!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. --> #### Link to tracking issue Fixes open-telemetry#42954
…emetry#42541) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description This PR attempts to fix re-add the support of `role_arn` in AWSCloudWatch and AWSEmf exporters. The support was present in aws-go-sdk-v1, but broke while moving to v2. <!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. --> #### Link to tracking issue Fixes open-telemetry#42115 --------- Signed-off-by: Yaten <yaten598@gmail.com> Co-authored-by: Antoine Toulme <atoulme@splunk.com>
… exporter (open-telemetry#42206) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description Add support for bodymap for opensearch exporter <!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. --> #### Link to tracking issue open-telemetry#41654 <!--Describe what testing was performed and which tests were added.--> #### Testing Add unit tests for the bodymap mode <!--Describe the documentation added.--> #### Documentation <!--Please delete paragraphs that you did not use before submitting.-->
…lector extension (open-telemetry#42330) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description Adding support for leader election using `k8sleaderelector` extension. <!-- Issue number (e.g. open-telemetry#1234) or full URL to issue, if applicable. --> #### Link to tracking issue Fixes open-telemetry#42266 <!--Describe what testing was performed and which tests were added.--> #### Testing Added the test `TestReceiverWithLeaderElection`. I'm just missing testing it in a real scenario, but I will do it next week. However, I marked it as ready for review for discussing the logic and structure 🙏 <!--Describe the documentation added.--> #### Documentation Updated README.md with the example of how it can be used. <!--Please delete paragraphs that you did not use before submitting.--> --------- Signed-off-by: Paulo Dias <paulodias.gm@gmail.com> Co-authored-by: Christos Markou <chrismarkou92@gmail.com>
…etry#43007) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description This PR adds span links support to telemetrygen, enabling the generation of spans with links to previously created spans. The new `--span-links` flag allows users to specify the number of span links to generate for each span, creating relationships between spans for testing distributed tracing scenarios. Key features: - New `--span-links` command line flag to control the number of links per span - Links are created to random existing span contexts from previously generated spans - Each link includes attributes for link type and index identification - Both parent and child spans can have links generated - Thread-safe collection and access of span contexts for linking <!--Describe what testing was performed and which tests were added.--> #### Testing - Added unit tests for span link generation functionality - Tested with various `--span-links` values (0, 1, 5, 10) - Verified links are properly attached to both parent and child spans - Confirmed thread-safe operation with multiple workers - Validated link attributes are correctly set <!--Describe the documentation added.--> #### Documentation - Updated command line help text for the new `--span-links` flag - Added configuration documentation for the NumSpanLinks field <!--Please delete paragraphs that you did not use before submitting.-->
Running `make generate` on Windows is not working which makes hard to develop on the platform. The main issue is that `go generate` has issues with the tools path and the lack of extension on tools like `mdatagen`. The fix is to normalize the path and add the ".exe" to the tools on Windows. Prior to this change `make generate` on Windows failed with the following: ```terminal PATH="C:/Users/pjanotti/src/otel/collector/contrib/.tools:$PATH" go generate ./... doc.go:4: running "mdatagen": exec: "mdatagen": executable file not found in %PATH% make: *** [../../Makefile.Common:244: generate] Error 1 ```
…tor-contrib into upgrade-contrib-version
- Update kedascalerexporter dependencies from v0.134.0 to v0.136.0 - Update datadoglogreceiver dependencies from v0.134.0 to v0.136.0 - Update OpenTelemetry Collector core dependencies - Update Prometheus, gRPC, and other supporting libraries
- Upgrade kedascalerexporter dependencies to v1.42.1 and v0.136.1 - Upgrade datadoglogreceiver dependencies to v1.42.1 and v0.136.1 - Update OpenTelemetry Collector core dependencies to the latest versions - Update supporting libraries including Prometheus and gRPC
- Changed loop iteration in `validateParsedLogs` and `convertToLogs` functions to use index-based access for improved performance and clarity. - This refactor enhances code readability and maintains functionality while adhering to best practices for efficient iteration.
- Upgrade OpenTelemetry dependencies in kedascalerexporter to the latest versions, including `otelzap`, `otelgrpc`, and `otelhttp`. - Update `google.golang.org/genproto/googleapis/rpc` to a newer version for improved compatibility. - Ensure all indirect dependencies are aligned with the latest releases to maintain stability and performance.
…nectors - Upgrade `github.com/davecgh/go-spew` from v1.1.1 to v1.1.2-0.20180830191138-d8f796af33cc for improved functionality. - Upgrade `github.com/pmezard/go-difflib` from v1.0.0 to v1.0.1-0.20181226105442-5d4384ee4fb2 to ensure compatibility and stability. - This change affects the following components: countconnector, signaltometricsconnector, sumconnector, honeycombmarkerexporter, filter, attributesprocessor, cumulativetodeltaprocessor, filterprocessor, logdedupprocessor, spanprocessor, tailsamplingprocessor, and hostmetricsreceiver.
…porter - Removed unused indirect dependencies from `go.mod` to streamline the project. - Added a custom error for invalid samples in `appender.go` to enhance error handling. - Optimized loop iteration in `metrics_store.go` for better performance and clarity. - Updated `go.sum` to reflect changes in dependencies and ensure consistency across the project.
- Introduced a new changelog template for documenting release notes. - Updated dependencies to v0.136.0 and v0.136.1, enhancing error handling in kedascalerexporter and optimizing datadog log processing. - Related issues include: [42918, 43007, 42330, 42206, 42541]. - This update improves overall project stability and performance.
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.
SAW-3594
Note
Bumps contrib/collector to 0.136.x with widespread module updates, adds
unrollprocessor
to distro, annotates Zookeeper scraper metrics stability, and refines testbed temp-dir/cleanup and RAM thresholds.contrib
tov0.136.0
andcollector
tov1.42.x
(pseudo).processor/unrollprocessor
toversions.yaml
and distro reports.development
) to metrics; update generated docs tables accordingly.internal/common/testutil
temp dirs; adjust Windows config cleanup; tweak expected RAM limits for some metric tests.Written by Cursor Bugbot for commit 964c89e. This will update automatically on new commits. Configure here.