Skip to content

Commit

Permalink
added solace receiver to splunk otel collector (#3590)
Browse files Browse the repository at this point in the history
  • Loading branch information
samiura authored Sep 7, 2023
1 parent 7e27cd8 commit 30b6799
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/components.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ The distribution offers support for the following components.
| [signalfx](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/signalfxreceiver) | [stable] |
| [simpleprometheus](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/simpleprometheusreceiver) | [beta] |
| [smartagent](../pkg/receiver/smartagentreceiver) | [beta] |
| [solace](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/solacereceiver) | [beta] |
| [splunk_hec](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/splunkhecreceiver) | [beta] |
| [sqlquery](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/sqlqueryreceiver) | [alpha] |
| [statsd](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/statsdreceiver) | [beta] |
Expand Down
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ require (
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/sapmreceiver v0.84.0
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/signalfxreceiver v0.84.0
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/simpleprometheusreceiver v0.84.0
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/solacereceiver v0.84.0
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/splunkhecreceiver v0.84.0
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/sqlqueryreceiver v0.84.0
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/statsdreceiver v0.84.0
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1278,6 +1278,8 @@ github.com/open-telemetry/opentelemetry-collector-contrib/receiver/signalfxrecei
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/signalfxreceiver v0.84.0/go.mod h1:26CBLZBhiDdPra3DaHB0is58Ll0XWDiAE9ewi+rYEOg=
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/simpleprometheusreceiver v0.84.0 h1:B0TfFrk7t5QjtKf6gLR+cppH+b//N+e/clZon5vnor0=
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/simpleprometheusreceiver v0.84.0/go.mod h1:a3duC79v30pXHf/RxZ0BmtptUBU9hnqdgDSNpQ79DO4=
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/solacereceiver v0.84.0 h1:70FPmxy+nErDdAicAILvcA7q0CAV1NzjrmqHie1pygs=
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/solacereceiver v0.84.0/go.mod h1:SenKuaaX3Q0MKPTobm4/dggSJKwtppfWOi7Ox25rLuQ=
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/splunkhecreceiver v0.84.0 h1:sWkFFa7J0E7r0VIPMU2J0/lQWj1Uq84FZi9oftRq9x0=
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/splunkhecreceiver v0.84.0/go.mod h1:CbLvYG5OVKTjgnnvZ0fqbkKIGFfSx+24eGjKNEKM8yw=
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/sqlqueryreceiver v0.84.0 h1:S8cLx2KiICqU52xeTZQvp9mxJbUyPXGxfbaBD4O2lpA=
Expand Down
2 changes: 2 additions & 0 deletions internal/components/components.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ import (
"github.com/open-telemetry/opentelemetry-collector-contrib/receiver/sapmreceiver"
"github.com/open-telemetry/opentelemetry-collector-contrib/receiver/signalfxreceiver"
"github.com/open-telemetry/opentelemetry-collector-contrib/receiver/simpleprometheusreceiver"
"github.com/open-telemetry/opentelemetry-collector-contrib/receiver/solacereceiver"
"github.com/open-telemetry/opentelemetry-collector-contrib/receiver/splunkhecreceiver"
"github.com/open-telemetry/opentelemetry-collector-contrib/receiver/sqlqueryreceiver"
"github.com/open-telemetry/opentelemetry-collector-contrib/receiver/statsdreceiver"
Expand Down Expand Up @@ -162,6 +163,7 @@ func Get() (otelcol.Factories, error) {
signalfxgatewayprometheusremotewritereceiver.NewFactory(),
simpleprometheusreceiver.NewFactory(),
smartagentreceiver.NewFactory(),
solacereceiver.NewFactory(),
splunkhecreceiver.NewFactory(),
sqlqueryreceiver.NewFactory(),
statsdreceiver.NewFactory(),
Expand Down
1 change: 1 addition & 0 deletions internal/components/components_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ func TestDefaultComponents(t *testing.T) {
"signalfx",
"signalfxgatewayprometheusremotewrite",
"smartagent",
"solace",
"splunk_hec",
"sqlquery",
"statsd",
Expand Down

0 comments on commit 30b6799

Please sign in to comment.