Elasticsearch Filebeat 文档类型已弃用问题

use*_*957 4 elasticsearch filebeat

我目前正在使用 ELK 5.5。现在看来 document_type 在 Filebeats 中已被弃用,但我现在在任何地方都找不到任何关于如何实现相同的示例。

这是我在日志中得到的:

WARN DEPRECATED: document_type is deprecated. Use fields instead.
Run Code Online (Sandbox Code Playgroud)

这是我当前的 filebeat 配置:

- input_type: log

  # Paths that should be crawled and fetched. Glob based paths.
  paths:
    - C:\inetpub\logs\LogFiles\*\*
  document_type: iislog

  paths:
    - C:\MyApp\logs\*
  document_type: applog
Run Code Online (Sandbox Code Playgroud)

有人可以告诉我如何在使用相同的 5.5 版时重写我的日志并摆脱此弃用消息。顺便说一句,我确实想对两种“文档类型”使用相同的 ES 索引。

小智 6

document_type您可以fieldsFilebeat上像这样使用,而不是使用:

- input_type: log

  # Paths that should be crawled and fetched. Glob based paths.
  paths:
    - C:\inetpub\logs\LogFiles\*\*
  fields:
    service: iislog
  fields_under_root: true 

  paths:
    - C:\MyApp\logs\*
  fields:
    service: applog
  fields_under_root: true
Run Code Online (Sandbox Code Playgroud)

现在,对于Logstash输出过滤器[type],您可以使用[service]. 这是我在logstash上的使用方式:

output {
  if [service] == "applog" {   
    elasticsearch {
    hosts => ["localhost:9200"]
    user => <user>
    password => <pass>
    index => "applog-%{+YYYY.MM.dd}"
    }   
  }
enter code here
Run Code Online (Sandbox Code Playgroud)

查看下面有关 Filebeat 上自定义字段的更多信息:https ://www.elastic.co/guide/en/beats/filebeat/current/migration-changed-fields.html