Not able to get the CSV values in the filter columns

My logstash configuration is as below :

input {
beats {
port => "5044"
}
}
filter {
csv {
columns => ["REQUEST_ID","SERVICE_NAME","OPERATION_NAME","OPERATION_TYPE","REQUEST_PAYLOAD","LOGGED_BY","LOGGED_ON"]
}
}
output {
stdout {
codec => rubydebug
}
elasticsearch {
hosts => ["----------:9200"]
index => "webservice"
}
}

I am consuming it into logstash via filebeat
In kibana, I cannot see any value against the columns but each CSV row value in the message column

What does an event look like in the rubydebug output on stdout?

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