Advertisement
CoyoteCrafty

my_pipeline_1_v2

Oct 20th, 2018
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.55 KB | None | 0 0
  1. input {
  2.   s3 {
  3.     access_key_id => "AKIAWTLM5HIMNFNXVVFK"
  4.     secret_access_key => "vFCEpEjg0TFHhaNnXD4sO/HTCR+AFOkoKzSXpXdb"
  5.     bucket => "elastic-boost-camp"
  6.     sincedb_path => "/var/lib/logstash/sincedb_wine_v2"
  7.     prefix => "wine"
  8.   }
  9. }
  10. filter {
  11.   csv {
  12.     columns => [id,country,description,designation,points,price,province,region_1,region_2,taster_name,taster_twitter_handle,title,variety,winery]
  13.   }
  14. }
  15. output {
  16.     elasticsearch {
  17.     user => "logstash_output_elasticsearch"
  18.     password => "logstash"
  19.     index => "wine_v2"
  20.   }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement