Hi Team,
I have a field “Size”, which holds the data “123,456,456”.
ie Size = 123,456,456
I need to remove the comma (,) from the data (ie Size = 123456456).
How do i write a pipeline to achieve this?
Regards,
Jayakumar.
Hi Team,
I have a field “Size”, which holds the data “123,456,456”.
ie Size = 123,456,456
I need to remove the comma (,) from the data (ie Size = 123456456).
How do i write a pipeline to achieve this?
Regards,
Jayakumar.
Maybe use grok:
[,]\s+%{GREEDYDATA:message}
https://discuss.elastic.co/t/remove-characters-in-grok/72548/2
Related GitHub issue: