Kafka to elasticsearch not going data

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..

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