# No Compatible Fields: The "blabla" index pattern does not contain any of the following field types: geo\_point

**URL:** https://discuss.elastic.co/t/no-compatible-fields-the-blabla-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/199855
**Category:** Kibana
**Created:** [September 17, 2019, 4:05pm UTC](https://discuss.elastic.co/t/no-compatible-fields-the-blabla-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/199855 "2019-09-17T16:05:43Z")
**Posts on this page:** 11
**Page:** 1

<div class="post-metadata">

### Author: ![Barushka](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/barushka/32/54351_2.png) [@Barushka](https://discuss.elastic.co/u/Barushka)
#### Post date: [September 17, 2019, 4:05pm UTC](https://discuss.elastic.co/t/no-compatible-fields-the-blabla-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/199855/1 "2019-09-17T16:05:43Z")

</div>

Hello everyone,  
I am new in ELK community. I have recently discovered ELK and currently going through a massive learning process. I encountered one issue that I cannot resolve. Please help! I am trying to visualize some of the log data by creating a coordinate map in Kibana. I seem to have all the data parsed correctly and all the fields I might need for it, however I keep getting this error message. I am attaching two screenshots. One of them is the message I am getting and another is a sample data points which I am using for my visualization. I am using Kibana version 5.6.1  
 ![geo_point%20bug](https://us1.discourse-cdn.com/elastic/original/3X/c/a/caac2dabf7e34ef24560f577363872ef45556c8b.jpeg) ![geo_point%20coordinates](https://us1.discourse-cdn.com/elastic/original/3X/5/d/5d21f702e0e26decf6c00fc176774bfb1b5222d8.jpeg)

---

<div class="post-metadata">

### Author: ![LizaD](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/lizad/32/51074_2.png) [@LizaD](https://discuss.elastic.co/u/LizaD)
#### Post date: [September 17, 2019, 4:46pm UTC](https://discuss.elastic.co/t/no-compatible-fields-the-blabla-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/199855/2 "2019-09-17T16:46:51Z")

</div>

Hi @Barushka,

Can you check your mappings for your index? GET balboa\*/\_mapping. I see this similar post that may help: [No Compatible Fields: types: geo\_point](https://discuss.elastic.co/t/no-compatible-fields-types-geo-point/137151).

Regards,  
Liza

---

<div class="post-metadata">

### Author: ![Barushka](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/barushka/32/54351_2.png) [@Barushka](https://discuss.elastic.co/u/Barushka)
#### Post date: [September 17, 2019, 5:33pm UTC](https://discuss.elastic.co/t/no-compatible-fields-the-blabla-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/199855/3 "2019-09-17T17:33:24Z")

</div>

Hi @ [Liza\_Dayoub](https://discuss.elastic.co/u/Liza_Dayoub),  
I did and here is what I got. Does it mean I have to create mapping? If so, how can I do it. I have never done it before. 🙈

 ![geo_point%20bug%201](https://us1.discourse-cdn.com/elastic/original/3X/d/b/db7ccf8640f7aef41e3fe62754599eeb43f23425.jpeg)

---

<div class="post-metadata">

### Author: ![LizaD](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/lizad/32/51074_2.png) [@LizaD](https://discuss.elastic.co/u/LizaD)
#### Post date: [September 17, 2019, 5:36pm UTC](https://discuss.elastic.co/t/no-compatible-fields-the-blabla-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/199855/4 "2019-09-17T17:36:31Z")

</div>

Hi @Barushka,

Yes looks like a mapping does not exist. Can you try something like:

PUT blabla  
{  
"mappings": {  
"\_doc": {  
"properties": {  
"location": {  
"type": "geo\_point"  
}  
}  
}  
}  
}

---

<div class="post-metadata">

### Author: ![Barushka](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/barushka/32/54351_2.png) [@Barushka](https://discuss.elastic.co/u/Barushka)
#### Post date: [September 17, 2019, 5:46pm UTC](https://discuss.elastic.co/t/no-compatible-fields-the-blabla-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/199855/5 "2019-09-17T17:46:58Z")

</div>

> [@LizaD](#):
>
> PUT blabla  
> {  
> "mappings": {  
> "\_doc": {  
> "properties": {  
> "location": {  
> "type": "geo\_point"  
> }  
> }  
> }  
> }  
> }

@LizaD  
I did and here is what I am getting

 ![geo_point%20bug%202](https://us1.discourse-cdn.com/elastic/original/3X/d/d/dd3cb68bd3cac1c09d529ed15620e44889324502.jpeg)

---

<div class="post-metadata">

### Author: ![BenTrent](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/bentrent/32/33915_2.png) [@BenTrent](https://discuss.elastic.co/u/BenTrent)
#### Post date: [September 17, 2019, 6:30pm UTC](https://discuss.elastic.co/t/no-compatible-fields-the-blabla-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/199855/6 "2019-09-17T18:30:12Z")

</div>

@Barushka

Please execute

```auto
GET rigcloud_access_log_event 

```

That will get us the details about the index, including its mapping.

Thanks!

Ben

---

<div class="post-metadata">

### Author: ![Barushka](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/barushka/32/54351_2.png) [@Barushka](https://discuss.elastic.co/u/Barushka)
#### Post date: [September 24, 2019, 4:15pm UTC](https://discuss.elastic.co/t/no-compatible-fields-the-blabla-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/199855/7 "2019-09-24T16:15:58Z")

</div>

> [@BenTrent](#):
>
> GET rigcloud\_access\_log\_event

@BenTrent  
Here is what I got

 ![geo_point%20bug%203](https://us1.discourse-cdn.com/elastic/original/3X/3/c/3c455b079095ca9ecece568e506032e6ce921ba7.jpeg)

---

<div class="post-metadata">

### Author: ![BenTrent](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/bentrent/32/33915_2.png) [@BenTrent](https://discuss.elastic.co/u/BenTrent)
#### Post date: [September 24, 2019, 4:33pm UTC](https://discuss.elastic.co/t/no-compatible-fields-the-blabla-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/199855/8 "2019-09-24T16:33:09Z")

</div>

@Barushka, please copy and paste the full response. So far it looks like there are no `geo_point` mapped fields anywhere in that index.

---

<div class="post-metadata">

### Author: ![Barushka](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/barushka/32/54351_2.png) [@Barushka](https://discuss.elastic.co/u/Barushka)
#### Post date: [September 24, 2019, 5:38pm UTC](https://discuss.elastic.co/t/no-compatible-fields-the-blabla-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/199855/9 "2019-09-24T17:38:49Z")

</div>

Here is more. I cannot post all of it. It is too long and this website does not allow me to do so.

{  
"rigcloud\_access\_log\_event": {  
"aliases": {},  
"mappings": {  
"rigcloudAccessEvent": {  
"properties": {  
"1": {  
"type": "text",  
"fields": {  
"keyword": {  
"type": "keyword",  
"ignore\_above": 256  
}  
}  
},  
"${phpinfo()}": {  
"type": "text",  
"fields": {  
"keyword": {  
"type": "keyword",  
"ignore\_above": 256  
}  
}  
},  
"%27": {  
"type": "text",  
"fields": {  
"keyword": {  
"type": "keyword",  
"ignore\_above": 256  
}  
}  
},  
"+BCSI-CS-495d0fc3e5d751d7": {  
"type": "text",  
"fields": {  
"keyword": {  
"type": "keyword",  
"ignore\_above": 256  
}  
}  
},  
"+\_sm\_au": {  
"type": "text",  
"fields": {  
"keyword": {  
"type": "keyword",  
"ignore\_above": 256  
}  
}  
},  
"+\_sm\_au\_c": {  
"type": "text",  
"fields": {  
"keyword": {  
"type": "keyword",  
"ignore\_above": 256  
}  
}  
},  
"+\_sm\_au\_d": {  
"type": "text",  
"fields": {  
"keyword": {  
"type": "keyword",  
"ignore\_above": 256  
}  
}  
},  
"+token": {  
"type": "text",  
"fields": {  
"keyword": {  
"type": "keyword",  
"ignore\_above": 256  
}  
}  
},  
"+undefined-smartbanner-closed": {  
"type": "text",  
"fields": {  
"keyword": {  
"type": "keyword",  
"ignore\_above": 256  
}  
}  
},  
"+user": {  
"type": "text",  
"fields": {  
"keyword": {  
"type": "keyword",  
"ignore\_above": 256  
}  
}  
}

---

<div class="post-metadata">

### Author: ![BenTrent](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/bentrent/32/33915_2.png) [@BenTrent](https://discuss.elastic.co/u/BenTrent)
#### Post date: [September 24, 2019, 6:10pm UTC](https://discuss.elastic.co/t/no-compatible-fields-the-blabla-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/199855/10 "2019-09-24T18:10:26Z")

</div>

If that index has no `geo_point` fields, does the index pattern from which you are trying to build the visualization include this index? If there are no `geo_point` fields, that is your problem.

Here are some docs on index patterns: [https://www.elastic.co/guide/en/kibana/current/tutorial-define-index.html](https://www.elastic.co/guide/en/kibana/current/tutorial-define-index.html)

If the index DOES have `geo_point` fields, and they are mapped as such (i.e. `"type": "geo_point"`), then you need to reload your index pattern so that it can recognize the field mapping.

See: [https://www.elastic.co/guide/en/kibana/current/index-patterns.html](https://www.elastic.co/guide/en/kibana/current/index-patterns.html) Near the bottom explains reloading. The little "refresh" looking button between the star and delete buttons should reload the pattern given the selected indices and their field capabilities.

---

<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: [October 22, 2019, 6:10pm UTC](https://discuss.elastic.co/t/no-compatible-fields-the-blabla-index-pattern-does-not-contain-any-of-the-following-field-types-geo-point/199855/11 "2019-10-22T18:10:32Z")

</div>

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