Guest User

Untitled

a guest
Jul 23rd, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. input {
  2. elasticsearch {
  3. hosts => ["localhost:9200"]
  4. index => ""
  5. # user => "elastic"
  6. # password => "changeme"
  7. query => '{"query": {"match_all": {}}}'
  8. }
  9. }
  10. filter {}
  11. output {
  12. stdout { codec => dots }
  13. csv {
  14. fields => ["sameAs","title"] # Must list up all the necessary field names
  15. path => "csv-file.csv"
  16. }
  17. }
Add Comment
Please, Sign In to add comment