# Kibana 4.6.1 ,elasticsearch 2.4.0,LOGSTASH 2.4

**URL:** https://discuss.elastic.co/t/kibana-4-6-1-elasticsearch-2-4-0-logstash-2-4/60716
**Category:** Kibana
**Created:** [September 16, 2016, 1:33pm UTC](https://discuss.elastic.co/t/kibana-4-6-1-elasticsearch-2-4-0-logstash-2-4/60716 "2016-09-16T13:33:30Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Raj\_Kumar](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/raj_kumar/32/25420_2.png) [@Raj\_Kumar](https://discuss.elastic.co/u/Raj_Kumar)
#### Post date: [September 16, 2016, 1:33pm UTC](https://discuss.elastic.co/t/kibana-4-6-1-elasticsearch-2-4-0-logstash-2-4/60716/1 "2016-09-16T13:33:30Z")

</div>

Kibana 4.6.1 ,elasticsearch 2.4.0,LOGSTASH 2.4

Hi All,

Am trying to create a tile map but iam uanble to create ,its says No Compatible Fields: The "logstash\_netflow\_cisco\_asa-\*" index pattern does not contain any of the following field types: geo\_point

I have tried curl -XDELETE [http://localhost:9200/logstash\_netflow\_cisco\_asa-2016.09.16](http://localhost:9200/logstash_netflow_cisco_asa-2016.09.16)

then ,

curl -XPUT [http://localhost:9200/logstash\_netflow\_cisco\_asa-2016.09.16](http://localhost:9200/logstash_netflow_cisco_asa-2016.09.16)" -d '

> {  
> "mappings": {  
> "log": {  
> "properties": {  
> "geo": {  
> "properties": {  
> "coordinates": {  
> "type": "geo\_point"  
> }  
> }  
> }  
> }  
> }  
> }  
> }  
> ';after that i refreshed the fields still i dint get the geo point fields.Please do help me to get the geo point.

Thanks,  
Raj

---

<div class="post-metadata">

### Author: ![Joe\_Fleming](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/joe_fleming/32/3561_2.png) [@Joe\_Fleming](https://discuss.elastic.co/u/Joe_Fleming)
#### Post date: [September 16, 2016, 5:42pm UTC](https://discuss.elastic.co/t/kibana-4-6-1-elasticsearch-2-4-0-logstash-2-4/60716/2 "2016-09-16T17:42:25Z")

</div>

I'd start with verifying the mapping in your index. You can [get your field mappings](https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-get-field-mapping.html) like so:

`curl -XGET 'http://localhost:9200/logstash_netflow_cisco_asa-2016.09.16/_mapping/'`

If you see that `coordinates` field is a `geo_point` type, then you're good there.

Next, try refreshing the cached mappings in Kibana by clicking on Refresh Field List, under Settings \> Indices

 ![](https://us1.discourse-cdn.com/elastic/original/2X/4/4945b4790d43ef0f7c883218d7f910633c49ab9e.png)

Then take a look at the field list and make sure the `coordinates` field says _geo\_point_.

Try that first. If that all looks right, then something else is going on.

---

<div class="post-metadata">

### Author: ![Raj\_Kumar](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/raj_kumar/32/25420_2.png) [@Raj\_Kumar](https://discuss.elastic.co/u/Raj_Kumar)
#### Post date: [September 19, 2016, 7:23am UTC](https://discuss.elastic.co/t/kibana-4-6-1-elasticsearch-2-4-0-logstash-2-4/60716/3 "2016-09-19T07:23:25Z")

</div>

Thank you for the response Joe, but when i put curl -XGET '[http://localhost:9200/logstash\_netflow\_cisco\_asa-2016.09.16/\_mapping/](http://localhost:9200/logstash_netflow_cisco_asa-2016.09.16/_mapping/)'

Am getting this

{"error":{"root\_cause":[{"type":"index\_not\_found\_exception","reason":"no such index","resource.type":"index\_or\_alias","[resource.id](http://resource.id)":"logstash\_netflow\_cisco\_asa-2016.09.16","index":"logstash\_netflow\_cisco\_asa-2016.09.16"}],"type":"index\_not\_found\_exception","reason":"no such index","resource.type":"index\_or\_alias","[resource.id](http://resource.id)":"logstash\_netflow\_cisco\_asa-2016.09.16","index":"logstash\_netflow\_cisco\_asa-2016.09.16"},"status":404}

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [July 6, 2017, 1:38pm UTC](https://discuss.elastic.co/t/kibana-4-6-1-elasticsearch-2-4-0-logstash-2-4/60716/4 "2017-07-06T13:38:48Z")

</div>


