Hi All,
I have installed Elastic search and Kibana application. Now i need to connect oracle database to Kibana.
For that first we need to install logstash. After downloading the application i had created a file named "logstash-simple.conf" and save it in the same directory as Logstash.
logstash-simple.conf contains below script:
input { stdin { } }
output {
elasticsearch { hosts => ["localhost:9200"] }
stdout { codec => rubydebug }
}
Now i ran the script by

I am getting the above error. kindly hep me on the same how to configure the logstash so that i can connect the oracle database.