Skip to content
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

Remove opencensus receiver #230

Merged
merged 1 commit into from
Apr 1, 2021
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
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
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