How to convert comma to ; in field

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

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.