Skip to content
Closed
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 internal/pkg/otel/components.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
"go.opentelemetry.io/collector/receiver"

// Receivers:
<<<<<<< HEAD

Check failure on line 16 in internal/pkg/otel/components.go

View workflow job for this annotation

GitHub Actions / lint (ubuntu-latest)

missing import path (typecheck)
=======

Check failure on line 17 in internal/pkg/otel/components.go

View workflow job for this annotation

GitHub Actions / lint (ubuntu-latest)

missing import path (typecheck)
dockerstatsreceiver "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/dockerstatsreceiver"
>>>>>>> d79d422cd (internal/pkg/otel/components.go: put import of headersetterextension to the right section (#10079))

Check failure on line 19 in internal/pkg/otel/components.go

View workflow job for this annotation

GitHub Actions / lint (ubuntu-latest)

missing import path (typecheck)
filelogreceiver "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/filelogreceiver" // for collecting log files
hostmetricsreceiver "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/hostmetricsreceiver"
httpcheckreceiver "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/httpcheckreceiver"
Expand Down Expand Up @@ -79,9 +83,9 @@
)

func components(extensionFactories ...extension.Factory) func() (otelcol.Factories, error) {
return func() (otelcol.Factories, error) {

Check failure on line 86 in internal/pkg/otel/components.go

View workflow job for this annotation

GitHub Actions / lint (ubuntu-latest)

missing import path (typecheck)
var err error
factories := otelcol.Factories{}

Check failure on line 88 in internal/pkg/otel/components.go

View workflow job for this annotation

GitHub Actions / lint (ubuntu-latest)

expected declaration, found factories (typecheck)

// Receivers
receivers := []receiver.Factory{
Expand Down
Loading