Geo_point data type issue

I've put geo_point in my index template

{
"mappings": {
"default": {
"_all": {
"enabled": true,
"norms": {
"enabled": false
}
},
"dynamic_templates": [
{
"template1": {
"mapping": {
"doc_values": true,
"ignore_above": 1024,
"index": "not_analyzed",
"type": "{dynamic_type}"
},
"match": ""
}
}
],
"properties": {
"@timestamp": {
"type": "date"
},
"message": {
"type": "string",
"index": "analyzed"
},
"offset": {
"type": "long",
"doc_values": "true"
},
"geoip" : {
"type" : "object",
"dynamic": true,
"properties" : {
"location" : { "type" : "geo_point" }
}
}
}
}
},
"settings": {
"index.refresh_interval": "5s"
},
"template": "apache12-
"
}

but still whille loading the index kibana is showing that, there is no geo_point data type in your index..

after loading the index I've already refresh it so many time as

thanks for the help

@shubhrant can you create an Index Pattern for a single Index in Kibana and see if it works then? I'm wondering if we have a field type mismatch between some of the indexes that are covered by the Index Pattern.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.