Am attempting to plot data from web logs. Data includes longitude/latitude.
When I select "Add Layer", "Documents" the only two values I get are "kibana_sample_data_logs" and "auditbeat*".
I have several dozen other kibana indexes. Did I miss a configuration step somewhere? Is this a "premium only" feature?
FWIW - my apache template has this mapping:
"geoip" : {
"dynamic" : true,
"properties" : {
"ip" : {
"type" : "ip"
},
"latitude" : {
"type" : "half_float"
},
"location" : {
"type" : "geo_point"
},
"longitude" : {
"type" : "half_float"
}
}