Hello there,
I need to remove the contents of some field from another field.
This seems like an easy procedure, but sadly I couldn't get it to work.
This is what I tried, but it didn't work:
mutate {
gsub => ["message", [removethis], ""]
}
Replace all the things in "message" matching with the contents of field "removethis" with "".
Essentially what I am looking for is something that can do this:
Field [message] = "Hello, I am Bob"
Field [removethis] = "Bob"
*** FILTER MAGIC ***
Field [message] after filter= "Hello, I am "
I hope you can help me.