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
18 changes: 18 additions & 0 deletions .chloggen/rm_opencensus_receiver_parsing.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: deprecation

# The name of the component, or a single word describing the area of concern, (e.g. collector, target allocator, auto-instrumentation, opamp, github action)
component: collector

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Remove opencensus receiver from parsing logic as it is no longer supported in OpenTelemetry Collector

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

# (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: |
The opencensus receiver has been removed from the operator's receiver parsing logic.
Since 2025-02-14 its no longer supported and got removed from the [Collector Distributions](https://github.com/open-telemetry/opentelemetry-collector-releases/pull/1056#pullrequestreview-3079408414).
4 changes: 0 additions & 4 deletions internal/components/receivers/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,6 @@ var (
components.NewSinglePortParserBuilder("influxdb", 8086).
WithTargetPort(8086).
MustBuild(),
components.NewSinglePortParserBuilder("opencensus", 55678).
WithAppProtocol(nil).
WithTargetPort(55678).
MustBuild(),
components.NewSinglePortParserBuilder("sapm", 7276).
WithTargetPort(7276).
MustBuild(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ func TestDownstreamParsers(t *testing.T) {
listenAddrParser bool
}{
{"zipkin", "zipkin", "__zipkin", 9411, false},
{"opencensus", "opencensus", "__opencensus", 55678, false},

// contrib receivers
{"carbon", "carbon", "__carbon", 2003, false},
Expand Down
Loading