疲劳是最舒适的枕头,努力工作吧。

logstash输出到elasticsearch出现问题

Logstash | 作者 wpf | 发布于2017年12月28日 | 阅读数:19471

通过filebeat获取日志信息,然后发给logstash,再有logstash输出到elasticsearch
logstash报如下错误:
[2017-12-28T15:58:57,361][ERROR][logstash.outputs.elasticsearch] Attempted to send a bulk request to elasticsearch, but no there are no living connections in the connection pool. Perhaps Elasticsearch is unreachable or down? {:error_message=>"No Available connections", :class=>"LogStash::Outputs::ElasticSearch::HttpClient::Pool::NoConnectionAvailableError", :will_retry_in_seconds=>64}
[2017-12-28T15:58:58,448][WARN ][logstash.outputs.elasticsearch] UNEXPECTED POOL ERROR {:e=>#<LogStash::Outputs::ElasticSearch::HttpClient::Pool::NoConnectionAvailableError: No Available connections>}
[2017-12-28T15:58:58,449][ERROR][logstash.outputs.elasticsearch] Attempted to send a bulk request to elasticsearch, but no there are no living connections in the connection pool. Perhaps Elasticsearch is unreachable or down? {:error_message=>"No Available connections", :class=>"LogStash::Outputs::ElasticSearch::HttpClient::Pool::NoConnectionAvailableError", :will_retry_in_seconds=>64}
[2017-12-28T15:58:58,449][WARN ][logstash.outputs.elasticsearch] UNEXPECTED POOL ERROR {:e=>#<LogStash::Outputs::ElasticSearch::HttpClient::Pool::NoConnectionAvailableError: No Available connections>}
[2017-12-28T15:58:58,449][ERROR][logstash.outputs.elasticsearch] Attempted to send a bulk request to elasticsearch, but no there are no living connections in the connection pool. Perhaps Elasticsearch is unreachable or down? {:error_message=>"No Available connections", :class=>"LogStash::Outputs::ElasticSearch::HttpClient::Pool::NoConnectionAvailableError", :will_retry_in_seconds=>64}
[2017-12-28T15:58:58,463][WARN ][logstash.outputs.elasticsearch] UNEXPECTED POOL ERROR {:e=>#<LogStash::Outputs::ElasticSearch::HttpClient::Pool::NoConnectionAvailableError: No Available connections>}
已邀请:

strglee

赞同来自:

LogStash::Outputs::ElasticSearch::HttpClient::Pool::NoConnectionAvailableError: No Available connections

提示很明显啊,需要在logstash conf文件中设置output信息
output {
elasticsearch { hosts => ["localhost:9200"] }
}

lz8086 - es小司机

赞同来自:

仔细看下logstash配置文件中关于es的配置是否正确

sec_master - 中国信息安全老弟

赞同来自:

你好,我也遇到这个问题,请问你是如何解决的,谢谢!

要回复问题请先登录注册