Logstash Twitter Dyanmic Keywords and Search filter

Can i use

Can i use logstash http plugin to to feed log twitter keywords search ?

input {
http {
host => "http://localhost/WebApplication3/home/Keywords"
port => 80
}
}

filter {
mutate {
add_field => { "token" => "logzioAccountToken" }
}
}


I need to feed the keywords dyanmic

input {
twitter {
consumer_key => ""
consumer_secret => ""
oauth_token => ""
oauth_token_secret => ""
keywords => ["USA"]
full_tweet => true
type => "tweet"
}
}

The only dynamic substitution you might be able to use in an input is an environment variable, and that's going to depend on how the input references the option.

what do you mean '?? to acoid using logstahs ?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.