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