Hello all.
I am trying to add a new field if an ip addr is in the message field. Something like that.
filter {
grok {
match => { "message" => "%{IP:client} }
add_field => { "remote_ip" => "%{client}" }
}
}
Someone has a hint for me to accomplish that?
thanks and cheers