Skip to content

Remove httpsinkexporter #5503

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

Merged
merged 1 commit into from
Oct 15, 2024
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
## Unreleased

### 🛑 Breaking changes 🛑

- (Splunk) Remove httpsink exporter ([#](https://github.com/signalfx/splunk-otel-collector/pull/))

### 🚩Deprecations 🚩

- (Splunk) Deprecate cloudfoundry monitor ([#5495](https://github.com/signalfx/splunk-otel-collector/pull/5495))
Expand Down
1 change: 0 additions & 1 deletion docs/components.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ The distribution offers support for the following components.
| [awss3](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/awss3exporter) | [alpha] |
| [debug](https://github.com/open-telemetry/opentelemetry-collector/tree/main/exporter/debugexporter) | [in development] |
| [file](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/fileexporter) | [alpha] |
| [httpsink](../internal/exporter/httpsinkexporter) | [in development] |
| [kafka](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/kafkaexporter) | [beta] |
| [loadbalancing](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/loadbalancingexporter) | [beta] |
| [logging](https://github.com/open-telemetry/opentelemetry-collector/tree/main/exporter/loggingexporter) | [deprecated] |
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ require (
github.com/hashicorp/vault v1.18.0
github.com/hashicorp/vault-plugin-auth-gcp v0.19.0
github.com/hashicorp/vault/api v1.15.0
github.com/jaegertracing/jaeger v1.62.0
github.com/knadh/koanf v1.5.0
github.com/open-telemetry/opentelemetry-collector-contrib/connector/countconnector v0.111.0
github.com/open-telemetry/opentelemetry-collector-contrib/connector/routingconnector v0.111.0
Expand Down Expand Up @@ -44,7 +43,6 @@ require (
github.com/open-telemetry/opentelemetry-collector-contrib/extension/storage/filestorage v0.111.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.111.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza v0.111.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.111.0
github.com/open-telemetry/opentelemetry-collector-contrib/processor/attributesprocessor v0.111.0
github.com/open-telemetry/opentelemetry-collector-contrib/processor/cumulativetodeltaprocessor v0.111.0
github.com/open-telemetry/opentelemetry-collector-contrib/processor/filterprocessor v0.111.0
Expand Down Expand Up @@ -263,6 +261,7 @@ require (
github.com/influxdata/telegraf v1.30.1 // indirect
github.com/influxdata/wlog v0.0.0-20160411224016-7c63b0a71ef8 // indirect
github.com/ionos-cloud/sdk-go/v6 v6.1.11 // indirect
github.com/jaegertracing/jaeger v1.62.0 // indirect
github.com/jcmturner/goidentity/v6 v6.0.1 // indirect
github.com/jonboulle/clockwork v0.4.0 // indirect
github.com/joshlf/go-acl v0.0.0-20200411065538-eae00ae38531 // indirect
Expand Down Expand Up @@ -301,6 +300,7 @@ require (
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/sampling v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/azure v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.111.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/prometheus v0.111.0 // indirect
github.com/opencontainers/runc v1.2.0-rc.3 // indirect
github.com/opencontainers/runtime-spec v1.2.0 // indirect
Expand Down
2 changes: 0 additions & 2 deletions internal/components/components.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ import (
"go.opentelemetry.io/collector/receiver/otlpreceiver"
"go.uber.org/multierr"

"github.com/signalfx/splunk-otel-collector/internal/exporter/httpsinkexporter"
"github.com/signalfx/splunk-otel-collector/internal/receiver/discoveryreceiver"
"github.com/signalfx/splunk-otel-collector/internal/receiver/lightprometheusreceiver"
"github.com/signalfx/splunk-otel-collector/internal/receiver/scriptedinputsreceiver"
Expand Down Expand Up @@ -234,7 +233,6 @@ func Get() (otelcol.Factories, error) {
awss3exporter.NewFactory(),
debugexporter.NewFactory(),
fileexporter.NewFactory(),
httpsinkexporter.NewFactory(),
kafkaexporter.NewFactory(),
loadbalancingexporter.NewFactory(),
loggingexporter.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 @@ -130,7 +130,6 @@ func TestDefaultComponents(t *testing.T) {
"awss3",
"debug",
"file",
"httpsink",
"kafka",
"loadbalancing",
"logging",
Expand Down
39 changes: 0 additions & 39 deletions internal/exporter/httpsinkexporter/README.md

This file was deleted.

163 changes: 0 additions & 163 deletions internal/exporter/httpsinkexporter/client.go

This file was deleted.

38 changes: 0 additions & 38 deletions internal/exporter/httpsinkexporter/config.go

This file was deleted.

49 changes: 0 additions & 49 deletions internal/exporter/httpsinkexporter/config_test.go

This file was deleted.

16 changes: 0 additions & 16 deletions internal/exporter/httpsinkexporter/doc.go

This file was deleted.

Loading
Loading