Rubydebug not working when swtiching over to kafka input

when i had the following input in logstash with the following specified, stdout { codec => rubydebug { metadata => true } } i would be able to see all the logs that logstash was processing.

input {
redis {
host => "localhost"
data_type => "list"
key => "filebeat"
}
}

I switched my input to this and now im not able to see the logs that are getting processed by logstash,

input {
kafka {
bootstrap_servers => "localhost:9092"
codec => "json"
topics => "logstash"
auto_offset_reset => "earliest"
decorate_events => true
}
}

the logs are making it to elasticsearch because i see them in kibana and I am using the following logstash version, logstash-6.3.0-1

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