haproxy
Posted: Mon Aug 07, 2017 11:45 pm
we want to filtering haproxy tcp log, can we use the below filter?
will above filter ok?
thanks.
Code: Select all
if [program] == 'haproxy' {
grok {
match => [ 'message', '%{HAPROXY} ]
}
date {
match => [ 'timestamp', 'dd/MMM/yyyy:HH:mm:ss Z' ]
}
geoip {
source => 'client_ip'
}
}thanks.