wwalker
(Walker)
February 17, 2018, 8:18am
1
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?
rcowart
(Rob Cowart)
February 17, 2018, 9:12am
2
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
1 Like
wwalker
(Walker)
February 18, 2018, 10:57pm
3
That did it, thanks a lot!
system
(system)
Closed
March 18, 2018, 10:57pm
4
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.