Logstash不会从redis传递索引

时间:2017-01-08 10:50:49

标签: elasticsearch logstash elastic-stack

就像this question一样,我试图使用redis和logstash将一些数据索引到elasticsearch。 我很肯定我正在将数据核心地写入redis,并使用模拟硬编码索引成功写入ES。

使用上面链接的问题,我尝试了以下输出配置:

output {

  elasticsearch {
     hosts => "localhost:9200"
     index => "${index}"
     type => "${type}"
  } 

}

index是我的redis数据中的字段时。 似乎我发现的例子使用了logstash输入阶段中定义的type而没有使用数据传递。我错过了什么吗?

0 个答案:

没有答案