我在配置 logstash 以输出到 AWS EC2 上的 Elasticsearch 集群时遇到问题。
我正在使用 Logstash 版本 1.1.5 和 Elasticsearch 1.19.8。
这是我在 logstash 中的输出配置:
output {
stdout { debug => true debug_format => "json"}
elasticsearch {
cluster => "logstash-searcher"
node_name => "logstash-indexer"
}
}
这是elasticsearch.yml中的对应配置
cluster.name: logstash-searcher
path.data: /usr/local/elasticsearch/data
path.work: /usr/local/elasticsearch/tmp
path.logs: /usr/local/elasticsearch/logs
path.plugins: /usr/local/elasticsearch/plugins
bootstrap.mlockall: true
cloud.aws.region: eu-west-1
cloud.aws.access_key: --
cloud.aws.secret_key: --
discovery.type: ec2
discovery.ec2.host_type: public_ip
discovery.ec2.groups: elasticsearch
gateway.type: s3
gateway.s3.bucket: es-logstash
transport.tcp.port: 9300-9400
我使用以下方式启动logstash:
java -jar logstash-1.1.5-monolithic.jar agent -f shipper.conf
在启动一段时间后,我遇到了这些失败:
Failed to index an event, will retry {:exception=>org.elasticsearch.discovery.MasterNotDiscoveredException: waited for [1m],
我的怀疑是,logstash 需要使用 cloud-aws 之类的东西,以便其弹性搜索客户端能够找到集群。有没有人有适用于aws的示例配置?