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

Add config option for Kafka version to Kafka output #449

Merged
merged 1 commit into from
May 22, 2024
Merged
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
8 changes: 8 additions & 0 deletions pkg/outputs/kafka_output/kafka_output.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ type config struct {
SplitEvents bool `mapstructure:"split-events,omitempty"`
NumWorkers int `mapstructure:"num-workers,omitempty"`
CompressionCodec string `mapstructure:"compression-codec,omitempty"`
KafkaVersion string `mapstructure:"kafka-version,omitempty"`
Debug bool `mapstructure:"debug,omitempty"`
BufferSize int `mapstructure:"buffer-size,omitempty"`
OverrideTimestamps bool `mapstructure:"override-timestamps,omitempty"`
Expand Down Expand Up @@ -508,6 +509,13 @@ func (k *kafkaOutput) SetTargetsConfig(map[string]*types.TargetConfig) {}
func (k *kafkaOutput) createConfig() (*sarama.Config, error) {
cfg := sarama.NewConfig()
cfg.ClientID = k.cfg.Name
if k.cfg.KafkaVersion != "" {
var err error
cfg.Version, err = sarama.ParseKafkaVersion(k.cfg.KafkaVersion)
if err != nil {
return nil, err
}
}
// SASL_PLAINTEXT or SASL_SSL
if k.cfg.SASL != nil {
cfg.Net.SASL.Enable = true
Expand Down