Skip to Main Content

Integration

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How to connect oracle database connection to Kibana

Srivatsan tsOct 30 2019 — edited Oct 30 2019

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

pastedImage_2.png

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.

Comments
Post Details
Added on Oct 30 2019
1 comment
2,170 views