Advertisement
jgalax

Untitled

Nov 30th, 2021
1,238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.38 KB | None | 0 0
  1. input {
  2.    
  3.     twitter {
  4.         consumer_key => "CONSUMER_KEY"
  5.         consumer_secret => "CONSUMER_SECRET"
  6.         oauth_token => "OAUTH_TOKEN"
  7.         oauth_token_secret => "OAUTH_TOKEN_SECRET"
  8.         keywords => ["apt", "Cyber intelligente"]
  9.         full_tweet => true
  10.         ignore_retweets => true
  11.     }
  12. }
  13.  
  14. output {
  15.     elasticsearch {
  16.         hosts => ["http://localhost:9200"]
  17.         index => "indice"
  18.     }
  19.  
  20.     stdout {
  21.     }
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement