Hi, community. I have field "temp" with this value: "2.4.3-371989". I want split it by dots. With this purpose I use mutate filter this way:
mutate {
split => ["temp", "."]
}
But after split "temp" field still equals "2.4.3-371989".
Hi, community. I have field "temp" with this value: "2.4.3-371989". I want split it by dots. With this purpose I use mutate filter this way:
mutate {
split => ["temp", "."]
}
But after split "temp" field still equals "2.4.3-371989".
Hi,
Split option take a Hash not an Array.
Need to be like this :
mutate {
split => { "temp" => "." }
}
Cad.
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
© 2020. All Rights Reserved - Elasticsearch
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant logo are trademarks of the Apache Software Foundation in the United States and/or other countries.