I am having an issue getting geo_point data into Kibana from a Security Appliance
Here is my logstash .conf file
mutate {
add_field => { "[location][lat]" => "%{[geoip][latitude]}" }
add_field => { "[location][lon]" => "%{[geoip][longitude]}" }
}
mutate {
convert => {"[location][lat]" => "float"}
convert => {"[location][lon]" => "float"}
}
But here is what is output in Kibana
Any advice would be great!
Thanks