How do I configure Kibana to use the TileMap?
I am using Kibana 4.5.4
My logstash config file is as follows
geoip {
source => "clientip"
target => "geoip"
database => "/etc/logstash/GeoLiteCity.dat"
add_field => [ "[geoip][coordinates]", "%{[geoip][longitude]}" ]
add_field => [ "[geoip][coordinates]", "%{[geoip][latitude]}" ]
}
mutate {
convert => [ "[geoip][coordinates]", "float"]
}
However, In the kibana tile map it says:
No Compatible Fields: The "iot_logs" index pattern does not contain any of the following field types: geo_point
Is there a different way I am suppose to configure the tile map?
I followed this tutorial