0

我试图通过logstash摄取metricbeat文件输出,但logstash没有在elasticsearch中创建任何索引。下面是我的logstash .conf 文件

  input {
          file {
            type => "my-metricbeat"
            path => ["C:/tmp/metricbeat/metric*"]
            codec => "json"
            start_position => beginning
            sincedb_path => "/dev/null"
          }
         }
        output {
          if([type] == "my-metricbeat") {
              elasticsearch {
                hosts => "http://localhost:9200"
                index => "metricbeat-test-%{+YYYY.MM.dd}"
              }
}
      stdout { codec => rubydebug }
         }

ELK 版本是 5.2.1

4

1 回答 1

1

我在您的输出中看到一个缺少的括号。

于 2017-06-16T19:34:38.933 回答