我正在使用Grok & Logstash 将访问日志从 Nginx 发送到 Elastic 搜索。我正在向 Logstash 提供我所有的访问日志(使用通配符,效果很好),我想获取文件名(确切地说是其中的一部分)并将其用作字段。
我的配置如下:
input {
file {
path => "/var/log/nginx/*.access.log"
type => "nginx_access"
}
}
filter {
if [type] == "nginx_access" {
grok {
match => { "message" => "%{COMBINEDAPACHELOG}" }
match => { "path" => "%{GREEDYDATA}/%{GREEDYDATA:app}.access.log" }
add_field => { "app" => "%{app}" }
}
}
}
output{
# whatever
}
但这似乎不起作用:该app
字段已添加,但值为%{app}
(未替换)。
我尝试了不同的东西,但无济于事。我可能遗漏了一些东西......有什么想法吗?
非常感谢