[2018-07-02T08:17:30,242][WARN ][logstash.shutdownwatcher ] {"inflight_count"=>1, "stalling_thread_info"=>{"other"=>[{"thread_id"=>201, "name"=>nil, "current_call"=>"[...]/vendor/bundle/jruby/2.3.0/gems/logstash-output-http-5.1.1/lib/logstash/outputs/http.rb:140:in `pop'"}]}}
[2018-07-02T08:17:35,244][WARN ][logstash.shutdownwatcher ] {"inflight_count"=>1, "stalling_thread_info"=>{"other"=>[{"thread_id"=>201, "name"=>nil, "current_call"=>"[...]/vendor/bundle/jruby/2.3.0/gems/logstash-output-http-5.1.1/lib/logstash/outputs/http.rb:140:in `pop'"}]}}
[2018-07-02T08:17:40,242][WARN ][logstash.shutdownwatcher ] {"inflight_count"=>1, "stalling_thread_info"=>{"other"=>[{"thread_id"=>201, "name"=>nil, "current_call"=>"[...]/vendor/bundle/jruby/2.3.0/gems/logstash-output-http-5.1.1/lib/logstash/outputs/http.rb:140:in `pop'"}]}}
this error happened after first time of receiving message from the rabbitmq
my logstash config is :::
input {
rabbitmq
{
user => "user"
password => "pass"
exchange => "exch"
queue => "queue"
durable => true
host => "ip addr"
subscription_retry_interval_seconds => 5
codec => "json"
}
}
output
{
if [type] == "login"
{
rabbitmq
{
user => "user"
password => "pass"
exchange => "exch-out"
exchange_type => "direct"
durable => true
key => "login-key"
host => "ip addr"
codec => "json"
}
}
file {
id => "All Input Data Logger"
path => "/elas/log/rabbitmq_debug_events-%{+YYYY-MM-dd}"
codec => rubydebug
}
}
i got this error every day , anyone can help please?