Advertisement
Guest User

Untitled

a guest
Sep 6th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. input {
  2. jdbc {
  3. jdbc_driver_library => "C:ELKMySQLMicrosoft JDBC Driver 6.0 for SQL Serversqljdbc_6.0esnjre8sqljdbc42.jar"
  4. jdbc_driver_class => "com.microsoft.sqlserver.jdbc.SQLServerDriver"
  5. jdbc_connection_string =>"jdbc:sqlserver://localhost:****;databaseName=BASEDEDATO"
  6. jdbc_user => "***"
  7. jdbc_password => "******"
  8. statement => "SELECT * FROM ArchivoLog"
  9. jdbc_paging_enabled => "true"
  10. jdbc_page_size => "50000"
  11. }
  12. }
  13.  
  14. output {
  15. elasticsearch {
  16. hosts => ["localhost:9200"]
  17. index => "sies_qualitas_dev"
  18. }
  19.  
  20. stdout {
  21. codec => rubydebug }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement