Implement proxy-protocol support for beats inputs

Hello :wave:t4:

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

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.