Skip to content
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
2 changes: 1 addition & 1 deletion exporter/kafkaexporter/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ func createProfilesExporter(

func exporterhelperOptions(
cfg Config,
qbs exporterhelper.QueueBatchSettings,
qbs xexporterhelper.QueueBatchSettings,
startFunc component.StartFunc,
shutdownFunc component.ShutdownFunc,
) []exporterhelper.Option {
Expand Down
4 changes: 2 additions & 2 deletions exporter/kafkaexporter/partitioner.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"context"

"go.opentelemetry.io/collector/client"
"go.opentelemetry.io/collector/exporter/exporterhelper"
"go.opentelemetry.io/collector/exporter/exporterhelper/xexporterhelper"
)

type metadataKeysPartitioner struct {
Expand All @@ -17,7 +17,7 @@ type metadataKeysPartitioner struct {

func (p metadataKeysPartitioner) GetKey(
ctx context.Context,
_ exporterhelper.Request,
_ xexporterhelper.Request,
) string {
var kb bytes.Buffer
meta := client.FromContext(ctx).Metadata
Expand Down
Loading