Hello.
Is there a way in logstash to mutate an input field which is a string representation of a decimal (eg. "2387.74") to a long representation of the number with implied decimal places? Ie. We'd like to store that string in elasticsearch as 238774.
We want to do this so we can perform aggregations on them without the rounding errors we'd incur from using doubles.
Thank you