Advertisement
Guest User

Untitled

a guest
Nov 14th, 2016
63
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_connection_string => ...
  4. jdbc_user => ...
  5. jdbc_validate_connection => ...
  6. jdbc_password => ...
  7. jdbc_driver_library => ...
  8. jdbc_driver_class => ...
  9. jdbc_paging_enabled => ...
  10. jdbc_page_size => "1000"
  11. statement => "SELECT name, age, bio FROM person"
  12. }
  13. }
  14. output {
  15. csv{
  16. fields => ["name", "age", "bio"]
  17. path => "output.csv"
  18. }
  19. }
  20.  
  21. filter{
  22. mutate
  23. {
  24. gsub => ["bio", "n", "LINE_BREAK"]
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement