Logstash + nginx:不会添加字段

问题描述 投票:0回答:1

我将设置自己的 ELK 服务器来集中日志记录。到目前为止一切顺利。

我设置 docker-compose.yml 来运行 ELK 堆栈,并设置另一个 docker-compose.yml 来运行 filebeat,它将监视日志文件、添加 env + 标签并发送到logstash。解析应该在logstash中进行。

文件beat.yml

name: xyz

fields:
  env: xyz

output.logstash:
  hosts: ["xyz:5044"]

filebeat.prospectors:
  - input_type: log
    fields:
      app_id: default
      type: nginx-access
    tags:
      - nginx
      - access
    paths:
      - /logs/nginx/access.log*
  - input_type: log
    fields:
      app_id: default
      type: nginx-error
    tags:
      - nginx
      - error
    paths:
      - /logs/nginx/error.log*

这是logstash.yml

input {
  beats {
    port => 5044
  }
}

filter {
  if ["nginx"] in [tags] and ["access"] in [tags] {
    grok {
      patterns_dir => "/etc/logstash/patterns"
      match => { "message" => "%{NGINXACCESS}" }
    }

    date {
      match => [ "timestamp", "dd/MMM/YYYY:HH:mm:ss Z" ]
    }
  }
}

output {
  elasticsearch {
    hosts => ["elasticsearch:9200"]
  }
  stdout { codec => rubydebug }
}

nginx 模式在这里

NGUSERNAME [a-zA-Z\.\@\-\+_%]+
NGUSER %{NGUSERNAME}
NGINXACCESS %{IPORHOST:clientip} %{NGUSER:indent} %{NGUSER:agent} \[%{HTTPDATE:timestamp}\] \"(?:%{WORD:verb} %{URIPATHPARAM:request}(?: HTTP/%{NUMBER:httpversion})?|)\" %{NUMBER:answer} (?:%{NUMBER:byte}|-) (?:\"(?:%{URI:referrer}|-))\" (?:%{QS:referree}) %{QS:agent}

我在 grokconstructor.appspot.com 上测试了表达式,它成功了。

这是演示线:

127.0.0.1 - - [11/May/2017:13:49:31 +0200] "GET / HTTP/1.1" 304 0 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586" "-" 

但是没有添加任何字段

我想也许我的“如果”是错误的,但我尝试了几种选择......没有任何帮助。

有什么想法吗?

logstash elastic-stack filebeat
1个回答
1
投票

我将首先删除 if,然后一一添加条件。那是从

开始
["nginx"] in [tags] 

如果有效,那就继续吧

["nginx"] in [tags] and ["access"] in [tags]

或者您可以尝试使用

"nginx" in [tags] and "access" in [tags]

更新:

要使用 fields.type = nginx-access,尝试

"nginx-access" in [fields][type]
© www.soinside.com 2019 - 2024. All rights reserved.