Hi All,
I am given below twitter input and output code in my logstash-config file.
input {
twitter {
# add your data
consumer_key => ""
consumer_secret => ""
oauth_token => ""
oauth_token_secret => ""
full_tweet => true
keywords => ["XXXX"]
}
}
output {
elasticsearch_http {
host => "localhost"
index => "twitter24"
index_type => "tweet1"
}
}
Step2:
logstash agent --debug -f logstash-simple.conf
I run above command in logstash
It run properly without any error.
Step3:
curl localhost:9200/_cat/indices?v
I run this command in CURL
But it's not showing any index which i given in twitter output config file.
Please help me with this issue.
Thanks,
Dan.