1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-26 10:43:35 +02:00

Add Logstash config to filter example Nginx logs

Signed-off-by: Jing Li <thyrlian@gmail.com>
This commit is contained in:
Jing Li 2020-07-24 02:32:09 +02:00
parent 20e68aa966
commit c02d92a01c
4 changed files with 8168 additions and 0 deletions

View file

@ -0,0 +1,30 @@
input {
file {
path => "/home/nginx.log"
start_position => "beginning"
sincedb_path => "/dev/null"
}
}
filter {
json {
source => "message"
}
geoip {
source => "remote_ip"
}
useragent {
source => "agent"
target => "useragent"
}
}
output {
elasticsearch {
hosts => ["http://es:9200"]
index => "nginx"
}
stdout {
codec => rubydebug
}
}