Hello
Would it be possible to support proxy-protocol for beats inputs ?
I send logs from winlogbeat to logstash and i have Haproxy between them.
without proxy and with this configuration of logstash, i got the ip of beats clients (work good):
input {
beats {
port => "5000"
}
}
filter {
mutate {
copy => {"[@metadata][ip_address]" => "[public_ip]"}
}
}
output {
stdout{}
}
but when i add the HAProxy, the public_ip become the IP of the HAproxy. for that i need to add proxy_protocol => true in the input beats.
the proxy_protocol dose not exist in beats inputs