Cannot able to get the SQLSERVER data into elasticsearch

It shows this error Can anyone please provide suggessions thanks in advance

config File

input {
jdbc {
# SqlServer jdbc connection string to your database, productdb
# "jdbc:sqlserver://HostName\instanceName;database=DBName;user=UserName;password=Password"
jdbc_connection_string => "jdbc:sqlserver://BAVNWASCNV03;database=dbname;user=xxx;password=yyy"
# The user you want to execute your statement as
jdbc_user => nil
# The path to your downloaded jdbc driver
jdbc_driver_library => "D:\SQL Driver\sqljdbc_4.2\enu\jre8\sqljdbc42.jar"
# The name of the driver class for SqlServer
jdbc_driver_class => "com.microsoft.sqlserver.jdbc.SQLServerDriver"
# Query for testing purpose
statement => "SELECT * from simple"
}
}
output{
elasticsearch { codec => json hosts => ["localhost:5601"] index => "cs_users" }
stdout { codec => rubydebug }
}

error

Please do not post pictures of text, just post the text.

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