I am using the below filter but it isn't working. No errors being thrown, the string just isn't being stripped.
filter {
if "::ffff:" in [event_data.IpAddress] {
mutate {
id => "IPv6 Strip"
gsub => [
"event_data.IpAddress", "::ffff:", ""
]
}
}
}