Advertisement
Guest User

Untitled

a guest
Jan 1st, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. input {
  2. jdbc {
  3. jdbc_driver_library => "mysql-connector-java-5.1.40-bin.jar"
  4. jdbc_driver_class => "com.mysql.jdbc.Driver"
  5. jdbc_connection_string => "jdbc:mysql://localhost:3306/mydb"
  6. jdbc_user => "user"
  7. jdbc_password => "password"
  8. schedule => "* * * * *"
  9. statement => "SELECT * FROM employee"
  10. use_column_value => true
  11. tracking_column => "id"
  12. }
  13. }
  14. output {
  15. elasticsearch {
  16. index => "logstash"
  17. document_type => "soemtype"
  18. document_id => "%{uid}"
  19. hosts => ["localhost:9200"]
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement