无法使用logstash将索引加载到elasticsearch

时间:2014-11-05 14:23:29

标签: elasticsearch logstash

我无法使用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"
   }
}




1 个答案:

答案 0 :(得分:0)

您可以从检查以下内容开始:

  1. 检查logstash日志文件是否有错误。
  2. 运行以下命令:telnet localhost 9200并验证您是否能够连接。
  3. 检查elasticsearch日志文件是否有错误。