Logstash twitter

i am getting this error when running a logstash twitter conf
Twitter client error {:message=>"No message available", :exception=>"IOError", :backtrace=>["org/jruby/ext/openssl/SSLSocket.java:805:in sysread'", "uri:classloader:/META-INF/jruby.home/lib/ruby/stdlib/jopenssl23/openssl/buffering.rb:125:inreadpartial'", "C:/ELK/logstash-6.2.4/vendor/bundle/jruby/2.3.0/gems/logstash-input-twitter-3.0.8/lib/logstash/inputs/twitter/patches.rb:30:in stream'", "C:/ELK/logstash-6.2.4/vendor/bundle/jruby/2.3.0/gems/logstash-input-twitter-3.0.8/lib/logstash/inputs/twitter/patches.rb:58:inrequest'", "C:/ELK/logstash-6.2.4/vendor/bundle/jruby/2.3.0/gems/twitter-5.15.0/lib/twitter/streaming/client.rb:37:in filter'", "C:/ELK/logstash-6.2.4/vendor/bundle/jruby/2.3.0/gems/logstash-input-twitter-3.0.8/lib/logstash/inputs/twitter.rb:138:inrun'", "C:/ELK/logstash-6.2.4/logstash-core/lib/logstash/pipeline.rb:514:in inputworker'", "C:/ELK/logstash-6.2.4/logstash-core/lib/logstash/pipeline.rb:507:inblock in start_input'"], :options=>nil}

here is my conf
input{
twitter{
consumer_key => "xxxxx"
consumer_secret => "xxxxxx"
oauth_token => "xxxxxx"
oauth_token_secret => "xxxxxxx"
keywords => ["xxxx","xxxxx"]
full_tweet => "true"

}

}
output{
elasticsearch {
hosts => "localhost"
index => "twitter"
document_type => "data"

}
}

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