Hi,
My Config file is following:
input {
jdbc {
jdbc_driver_library => "/app/sqljdbc4-2.0.jar"
jdbc_driver_class => "com.microsoft.sqlserver.jdbc.SQLServerDriver"
jdbc_connection_string => "jdbc:sqlserver://10.124.21.132:1433;databaseName=servicedesk_rovtest"
jdbc_user => "**"
jdbc_password => "****"
statement => "SELECT * from dbo.Datacenter"
}
}
output {
stdout { codec => rubydebug }
elasticsearch {
hosts => ["localhost:9200"]
index => "database-record"
document_type => "sqlServerData"
}
}
This config file has been run successfully.
My issue is that when i checked index, No index create.
Can you please help me over this?