Hello..
I am transferring data from kafka to elastic through logstash...below is my conf file details
input {
kafka {
bootstrap_servers => "localhost:9092"
topics => ["test"]
}
}
output {
stdout {
codec => json_lines
}
elasticsearch {
hosts => ["localhost:9200"]
codec => json_lines
index => "samz"
}
}
But I am not getting data in elasticsearch....while running it showing following information...only..