Hi,
I would like to remove all URLs and email addresses from plain text field. I suppose that gsub should be used like
mutate {
gsub => ["text", "http\S+", ""]
}
Please correct me if I'm wrong. And what about removing email addresses?
Thanks.