Using the below in pipeline:
mutate { add_field => { "geoip.location.coordinates" => "%{geoip.location.lat},%{geoip.location.lon}" } }
Does not result in something like 37.425,-122.00 but rather %{geoip.location.lat},%{geoip.location.lon}. What am I doing wrong?
37.425,-122.00
%{geoip.location.lat},%{geoip.location.lon}
Should be...
mutate { add_field => { "[geoip][location][coordinates]" => "%{[geoip][location][lat]},%{[geoip][location][lon]}" } }
Hopefully that helps.
Rob
Robert Cowart (rob@koiossian.com) www.koiossian.com True Turnkey SOLUTIONS for the Elastic Stack
That did it, thanks a lot!
© 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.