Logstah error [ERROR][logstash.pipeline ] A plugin had an unrecoverable error. Will restart this plugin

[2017-11-20T17:11:02,435][ERROR][logstash.pipeline ] A plugin had an unrecoverable error. Will restart this plugin.
Plugin: <LogStash::Inputs::Beats port=>5044, id=>"823584548602b7a239986c4d01ff915c41b4c954-1", enable_metric=>true, codec=><LogStash::Codecs::Plain id=>"plain_89f037f7-c768-41cc-8329-2da0414a5239", enable_metric=>true, charset=>"UTF-8">, host=>"0.0.0.0", ssl=>false, ssl_verify_mode=>"none", include_codec_tag=>true, ssl_handshake_timeout=>10000, congestion_threshold=>5, target_field_for_codec=>"message", tls_min_version=>1, tls_max_version=>1.2, cipher_suites=>["TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384", "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384", "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256", "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256", "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384", "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384", "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256", "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256"], client_inactivity_timeout=>60>
Error: event executor terminated

the error like this.who can tell me why .

my logstash conf file like this
input {
beats {
port =>5044
}
}
filter {
mutate {
gsub => ["message","\x","\\x"]
}
json {
source => "message"
remove_field => ["message","beat","tags","source"]
}
date {
match => ["timestamp","ISO8601"]
timezone => "Asia/Shanghai"
target => "@timestamp"
}

}
output {
elasticsearch {
hosts => ["ip1:9200","ip2:9200","ip3:9200"]
index => "nginxaccess-%{+YYYY_MM}"
user => elastic
password => changeme
}

}

I use this conf run on other server .The service can run normally.Except for this

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