Skip to content

Commit

Permalink
Remove opencensus receiver
Browse files Browse the repository at this point in the history
  • Loading branch information
flands committed Apr 1, 2021
1 parent f5581fe commit 3356df1
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 30 deletions.
1 change: 0 additions & 1 deletion cmd/otelcol/config/collector/agent_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ receivers:
thrift_binary:
thrift_compact:
thrift_http:
opencensus:
otlp:
protocols:
grpc:
Expand Down
6 changes: 0 additions & 6 deletions cmd/otelcol/config/collector/full_config_linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,6 @@ receivers:
# Traces + Metrics
#############################################################################

# Enables the opencensus receiver with default settings
# - grpc (default endpoint = 0.0.0.0:55678)
# - http (default endpoint = 0.0.0.0:55678)
# Full configuration here: https://github.com/open-telemetry/opentelemetry-collector/tree/main/receiver/opencensusreceiver
opencensus:

# Enables the otlp receiver with default settings
# - grpc (default endpoint = 0.0.0.0:4317)
# - http (default endpoint = 0.0.0.0:55681)
Expand Down
1 change: 0 additions & 1 deletion cmd/otelcol/config/collector/gateway_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ receivers:
thrift_binary:
thrift_compact:
thrift_http:
opencensus:
otlp:
protocols:
grpc:
Expand Down
1 change: 0 additions & 1 deletion cmd/otelcol/config/collector/otlp_config_linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ receivers:
thrift_binary:
thrift_compact:
thrift_http:
opencensus:
otlp:
protocols:
grpc:
Expand Down
31 changes: 15 additions & 16 deletions docs/components.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,21 @@ These components are considered stable. While in beta, breaking changes may be
introduced in a new release. In addition, any of these components may be
removed prior to the 1.0 release.

| Receivers | Processors | Exporters | Extensions |
| :--------------: | :--------: | :-------: | :--------: |
| fluentforward | attributes | file | healthcheck |
| hostmetrics | batch | logging | httpforwarder |
| jaeger | filter | otlp | host_observer |
| k8s_cluster | k8s_tagger | sapm | k8s_observer |
| kubeletstats | memorylimiter | signalfx | pprof |
| opencensus | metrictransform | splunk_hec | zpages |
| otlp | resource | | |
| receiver_creator | resourcedetection | | |
| sapm | span | | |
| signalfx | | | |
| simpleprometheus | | | |
| smartagent | | | |
| splunk_hec | | | |
| zipkin | | | |
| Receivers | Processors | Exporters | Extensions |
| :--------------: | :--------: | :-------: | :--------: |
| fluentforward | attributes | file | healthcheck |
| hostmetrics | batch | logging | httpforwarder |
| jaeger | filter | otlp | host_observer |
| k8s_cluster | k8s_tagger | sapm | k8s_observer |
| kubeletstats | memorylimiter | signalfx | pprof |
| otlp | metrictransform | splunk_hec | zpages |
| receiver_creator | resource | | |
| sapm | resourcedetection | | |
| signalfx | span | | |
| simpleprometheus | | | |
| smartagent | | | |
| splunk_hec | | | |
| zipkin | | | |

## Alpha

Expand Down
1 change: 0 additions & 1 deletion examples/kubernetes-yaml/splunk-otel-collector-agent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ data:
thrift_binary:
thrift_compact:
thrift_http:
opencensus:
otlp:
protocols:
grpc:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ data:
thrift_binary:
thrift_compact:
thrift_http:
opencensus:
otlp:
protocols:
grpc:
Expand Down
2 changes: 0 additions & 2 deletions internal/components/components.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ import (
"go.opentelemetry.io/collector/receiver/hostmetricsreceiver"
"go.opentelemetry.io/collector/receiver/jaegerreceiver"
"go.opentelemetry.io/collector/receiver/kafkareceiver"
"go.opentelemetry.io/collector/receiver/opencensusreceiver"
"go.opentelemetry.io/collector/receiver/otlpreceiver"
"go.opentelemetry.io/collector/receiver/prometheusreceiver"
"go.opentelemetry.io/collector/receiver/zipkinreceiver"
Expand Down Expand Up @@ -88,7 +87,6 @@ func Get() (component.Factories, error) {
k8sclusterreceiver.NewFactory(),
kafkareceiver.NewFactory(),
kubeletstatsreceiver.NewFactory(),
opencensusreceiver.NewFactory(),
otlpreceiver.NewFactory(),
prometheusexecreceiver.NewFactory(),
prometheusreceiver.NewFactory(),
Expand Down
1 change: 0 additions & 1 deletion internal/components/components_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ func TestDefaultComponents(t *testing.T) {
"k8s_cluster",
"kafka",
"kubeletstats",
"opencensus",
"otlp",
"prometheus",
"prometheus_exec",
Expand Down

0 comments on commit 3356df1

Please sign in to comment.