Hi All,
I have created a logstash configuration file to crawl the data from IBM Db2. I am getting an issue that JDBC driver libirary is not loaded. Here i am using logstash version 7.7.1.
Configuration file
input {
jdbc {
jdbc_driver_library => ""
jdbc_driver_class => "com.ibm.db2.jcc.DB2Driver"
jdbc_connection_string => "jdbc:db2://11:1:1:1:9000/RTEWQSD"
jdbc_user => "ddddddd"
jdbc_password => "dddddd"
statement => "select * from dddddd"
}
}
output {
stdout { codec => rubydebug }
}
Could please some one suggest what is the proper driver should i use to crawl the
data from IBM DB2 database?
Thanks in advance