[receiver/tcplog] rename to tcp_log with deprecated alias tcplog#47369
Merged
atoulme merged 7 commits intoApr 4, 2026
Conversation
songy23
approved these changes
Apr 3, 2026
atoulme
approved these changes
Apr 4, 2026
araiu
pushed a commit
to araiu/opentelemetry-collector-contrib
that referenced
this pull request
Apr 6, 2026
…pen-telemetry#47369) Part of: - open-telemetry#45339 Assisted-by: Cursor with Composer v2
emiliaFer
pushed a commit
to emiliaFer/opentelemetry-collector-contrib
that referenced
this pull request
Apr 8, 2026
…pen-telemetry#47369) Part of: - open-telemetry#45339 Assisted-by: Cursor with Composer v2
codeboten
pushed a commit
that referenced
this pull request
Apr 9, 2026
…ttpcheck` (#47505) Part of: - #45339 #### Description Renames the `httpcheck` receiver type to `http_check` to match the snake_case naming convention established in open-telemetry/opentelemetry-collector#14208. The previous type `httpcheck` is preserved as a deprecated alias via `xreceiver.WithDeprecatedTypeAlias`, so existing user configurations remain functional and will log a deprecation warning at startup. Metric names (`httpcheck.*`) and the directory layout (`receiver/httpcheckreceiver`) are intentionally unchanged to avoid user-facing breakage and minimize churn, matching the precedent set by other receiver renames under #45339 (e.g. #47369, #47370, #47291, #46750, #46729). #### Link to tracking issue Part of #45339 #### Testing - `make generate` regenerates `internal/metadata/generated_status.go`, `generated_component_test.go`, `internal/metadata/config.schema.yaml`, `internal/metadata/generated_config.go`, and `documentation.md` with the new type - `go test ./...` passes for the receiver - `make lint` passes for the receiver - `make chlog-validate` passes - `make gendistributions` produces the same diff as the manual edits to `reports/distributions/{contrib,k8s}.yaml` #### Documentation - Added a note at the top of the Configuration section in `README.md` explaining the rename and that the deprecated alias is still accepted - Updated all `receivers: httpcheck:` config examples in `README.md` to `receivers: http_check:` Signed-off-by: Nick Nikolakakis <nonicked@protonmail.com>
AndrewCharlesHay
pushed a commit
to AndrewCharlesHay/opentelemetry-collector-contrib
that referenced
this pull request
Apr 23, 2026
…pen-telemetry#47369) Part of: - open-telemetry#45339 Assisted-by: Cursor with Composer v2
AndrewCharlesHay
pushed a commit
to AndrewCharlesHay/opentelemetry-collector-contrib
that referenced
this pull request
Apr 23, 2026
…ttpcheck` (open-telemetry#47505) Part of: - open-telemetry#45339 #### Description Renames the `httpcheck` receiver type to `http_check` to match the snake_case naming convention established in open-telemetry/opentelemetry-collector#14208. The previous type `httpcheck` is preserved as a deprecated alias via `xreceiver.WithDeprecatedTypeAlias`, so existing user configurations remain functional and will log a deprecation warning at startup. Metric names (`httpcheck.*`) and the directory layout (`receiver/httpcheckreceiver`) are intentionally unchanged to avoid user-facing breakage and minimize churn, matching the precedent set by other receiver renames under open-telemetry#45339 (e.g. open-telemetry#47369, open-telemetry#47370, open-telemetry#47291, open-telemetry#46750, open-telemetry#46729). #### Link to tracking issue Part of open-telemetry#45339 #### Testing - `make generate` regenerates `internal/metadata/generated_status.go`, `generated_component_test.go`, `internal/metadata/config.schema.yaml`, `internal/metadata/generated_config.go`, and `documentation.md` with the new type - `go test ./...` passes for the receiver - `make lint` passes for the receiver - `make chlog-validate` passes - `make gendistributions` produces the same diff as the manual edits to `reports/distributions/{contrib,k8s}.yaml` #### Documentation - Added a note at the top of the Configuration section in `README.md` explaining the rename and that the deprecated alias is still accepted - Updated all `receivers: httpcheck:` config examples in `README.md` to `receivers: http_check:` Signed-off-by: Nick Nikolakakis <nonicked@protonmail.com>
codeboten
pushed a commit
that referenced
this pull request
May 8, 2026
…check` (#47507) Part of: - #45339 #### Description Renames the `tcpcheck` receiver type to `tcp_check` to match the snake_case naming convention established in open-telemetry/opentelemetry-collector#14208. The previous type `tcpcheck` is preserved as a deprecated alias via `xreceiver.WithDeprecatedTypeAlias`, so existing user configurations remain functional and will log a deprecation warning at startup. Metric names (`tcpcheck.*`) and the directory layout (`receiver/tcpcheckreceiver`) are intentionally unchanged to avoid user-facing breakage, matching the precedent set by other receiver renames under #45339 (e.g. #47505, #47369, #47370, #47291, #46750, #46729). #### Link to tracking issue Part of #45339 #### Testing - `make generate` regenerates `internal/metadata/generated_status.go`, `generated_component_test.go`, `internal/metadata/config.schema.yaml`, `internal/metadata/generated_config.go`, and `documentation.md` with the new type - `go test ./...` passes for the receiver (including `TestLoadConfig/tcp_check` after updating `testdata/config.yaml`) - `make lint` passes for the receiver - `make chlog-validate` passes - `make gendistributions` and `make generate-chloggen-components` produced the same diff as my edits #### Documentation - Added a note at the top of the Configuration section in `README.md` explaining the rename and that the deprecated alias is still accepted - Updated the example config in `README.md` to use `tcp_check:` - Updated `testdata/config.yaml` to use the new receiver key Signed-off-by: Nick Nikolakakis <nonicked@protonmail.com>
6 tasks
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
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.
Part of:
Assisted-by: Cursor with Composer v2