Add Logstash config to filter example Nginx logs
Signed-off-by: Jing Li <thyrlian@gmail.com>master
parent
20e68aa966
commit
c02d92a01c
File diff suppressed because it is too large
Load Diff
@ -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
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue