Hi all,
I want to ask is that Logstash filtering support the case like this:-
value field is ABCDE, abcde, 12345, @#$%
if the value field is ABCDE and abcde,
then overwrite ABCE and abcde to 98765.
mutate {
match => ["destination", "RSC 8 Entry Zone","RSC 8 Exit Zone","RSC ENTRY GENERAL ACCESS","RSC EXIT GENERAL ACCESS","RSC9 T1 MALE ENTRY TURNSTILE","RSC9 T1 MALE EXIT TURNSTILE" ]
update => {"destination", "RSC"}
}
*mutate filter is no support match
something like that, but i am not sure what method is suitable to use.