Hi
i want to collect csv file, but some field include comma in text
i want to change it to ;
Run the events through a csv filter (it correctly parses quoted fields containing commas) then
mutate { gsub => [ "column2", ",", ";" ] }
Thanks