我无法使用logstash将索引加载到elasticsearch。以下是我的logstash.conf设置。对我来说配置设置似乎很好。如果我错过了什么,请帮忙。
假设Logstash&弹性搜索服务运行良好。
input {
file {
type => "IISLog"
path => "C:/inetpub/logs/LogFiles/W3SVC1/u_ex140930.log"
start_postition => "beginning"
}
}
output {
stdout { debug => true debug_format => "ruby"}
elasticsearch_http {
host => "localhost"
port => 9200
protocol => "http"
index => "iislogs2"
}
}

答案 0 :(得分:0)
您可以从检查以下内容开始:
telnet localhost 9200
并验证您是否能够连接。