Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .chloggen/remove-kubeletstats-utilization-converter.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: bug_fix
Comment thread
jinja2 marked this conversation as resolved.

# The name of the component, or a single word describing the area of concern, (e.g. crosslink)
component: receiver/kubeletstats

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Removed the Splunk distribution's config converter that handled no-op configuration sections for CPU utilization metrics that were already disabled

# One or more tracking issues related to the change
issues: [6815]

# (Optional) One or more lines of additional information to render under the primary note.
# These lines will be padded with 2 spaces and then inserted directly into the document.
# Use pipe (|) for multiline entries.
subtext:
8 changes: 8 additions & 0 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,10 @@ jobs:
matrix: ${{ fromJSON(needs.integration-test-discovery-matrix.outputs.matrix) }}
fail-fast: false
steps:
- name: Free up disk space for next step
uses: jlumbroso/free-disk-space@v1.3.1
if: runner.os == 'Linux'
continue-on-error: true
- uses: actions/checkout@v5
with:
fetch-depth: 0
Expand Down Expand Up @@ -403,6 +407,10 @@ jobs:
matrix: ${{ fromJSON(needs.integration-test-discovery-k8s-matrix.outputs.matrix) }}
fail-fast: false
steps:
- name: Free up disk space for next step
uses: jlumbroso/free-disk-space@v1.3.1
if: runner.os == 'Linux'
continue-on-error: true
- uses: actions/checkout@v5
with:
fetch-depth: 0
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ and the [opentelemetry-collector-contrib v0.136.0](https://github.com/open-telem
- (Contrib) `pkg/ottl`: Upgrade profiles proto to 1.8.0 ([#42526](https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/42526))
See [proto changelog](https://github.com/open-telemetry/opentelemetry-proto/blob/main/CHANGELOG.md#180---2025-09-02).
- (Contrib) `transformprocessor`: Upgrade profiles proto to 1.8.0 ([#42526](https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/42526))
- (Contrib) `kubeletstatsreceiver`: Remove support for no-op config sections for disabled CPU utilization metrics ([#42727](https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/42727))

### 💡 Enhancements 💡

Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ require (
github.com/go-sql-driver/mysql v1.9.3 // indirect
github.com/go-stack/stack v1.8.1 // indirect
github.com/go-test/deep v1.1.1 // indirect
github.com/gobwas/glob v0.2.4-0.20181002190808-e7a84e9525fe
github.com/gobwas/glob v0.2.4-0.20181002190808-e7a84e9525fe // indirect
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
github.com/gogo/googleapis v1.4.1 // indirect
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
Expand Down Expand Up @@ -707,7 +707,7 @@ require (
github.com/rs/cors v1.11.1 // indirect
github.com/ryanuber/go-glob v1.0.0 // indirect
github.com/shirou/gopsutil/v3 v3.24.5 // indirect
github.com/signalfx/com_signalfx_metrics_protobuf v0.0.3
github.com/signalfx/com_signalfx_metrics_protobuf v0.0.3 // indirect
github.com/signalfx/defaults v1.2.2-0.20180531161417-70562fe60657 // indirect
github.com/signalfx/gohistogram v0.0.0-20160107210732-1ccfd2ff5083 // indirect
github.com/signalfx/ingest-protocols v0.4.1 // indirect
Expand Down
144 changes: 0 additions & 144 deletions internal/configconverter/disable_kubelet_utilization_metrics.go

This file was deleted.

This file was deleted.

56 changes: 0 additions & 56 deletions internal/configconverter/dpfilters/datapoint.go

This file was deleted.

Loading
Loading