Guest User

Untitled

a guest
Oct 26th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. input {
  2. jdbc {
  3. jdbc_connection_string => "jdbc:postgresql://@host:@port/@database"
  4. jdbc_user => "@username"
  5. jdbc_password => "@password"
  6. jdbc_driver_library => "C:postgresql-42.2.5.jar"
  7. jdbc_driver_class => "org.postgresql.Driver"
  8. statement => "SELECT * from table_name"
  9. }
  10. }
  11. output {
  12. elasticsearch {
  13. hosts => ["localhost:9200"]
  14. index => "table_name"
  15. }
  16. }
Add Comment
Please, Sign In to add comment