Vertica connection with ELK

hi, im trying to connect Vertica with ELastic search and writing the conf file for the same.

input {
                        jdbc {
                                    jdbc_validate_connection => true
                                    jdbc_connection_string => "jdbc:vertica://localhost:5433/shr4_vrt_005"
                                    jdbc_user => "nnnn"
                                    jdbc_password => "yyy"
                                    jdbc_driver_library =>"/home/fh/sim/vertica-jdbc-7.2.3-0.jar"
                                    jdbc_driver_class => "com.vertica.jdbc.Driver"
                                                        statement => "select * from xyz where rownum <2"
                               }
        }

output {
  elasticsearch {
    hosts => [" "]
    index => "vertica1"
  }
   stdout {codec => rubydebug}
}

But im getting the error ->

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