Unable to output to Kafka Topic

Hello,

I am trying to output to a kafka topic but it does not seem to work properly.
I am using logstash 5.2.2 with the latest logstash-output-kafka

the test setup is:

input {
  file {
    path => "/var/log/dpkg.log"
    start_position => "beginning"
  }
}
output {
  kafka {
    bootstrap_servers => "es-kafka1:9092"
    topic_id => "logs"
  }
}

the topic has already been created. Kafka is 0.10.2.0

Regards
Alessandro

0.10.0.1 doesn't work either

I am trying to output to a kafka topic but it does not seem to work properly.

What does this mean, exactly? Are there any error messages in the Logstash log, for example?

Hi,

apologies for the delay. The error ended up being that the client certificates I had created in PKCS12 format were not correct. Thank you and sorry for not being more verbose.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.