# List of fields in Indicies - Configure Index Pattern in Kibana

**URL:** https://discuss.elastic.co/t/list-of-fields-in-indicies-configure-index-pattern-in-kibana/41565
**Category:** Kibana
**Created:** [February 11, 2016, 11:31pm UTC](https://discuss.elastic.co/t/list-of-fields-in-indicies-configure-index-pattern-in-kibana/41565 "2016-02-11T23:31:27Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Karthik\_Ramachandran](https://avatars.discourse-cdn.com/v4/letter/k/f19dbf/32.png) [@Karthik\_Ramachandran](https://discuss.elastic.co/u/Karthik_Ramachandran)
#### Post date: [February 11, 2016, 11:31pm UTC](https://discuss.elastic.co/t/list-of-fields-in-indicies-configure-index-pattern-in-kibana/41565/1 "2016-02-11T23:31:27Z")

</div>

I created an index with type mapping and uploaded few contents. In type mapping, I created types for attributes "PublishedTime" and "PublishedTimeGMT". I also ensured that all the documents/content I indexed do have the attribute as above in right case. But, when I go to kibana and try configure a index pattern, I see four items as below and not sure why. I'm expecting only two.

publishedTime  
PublishedTimeGMT  
PublishedTIme  
publishedTimeGMT

Am I missing something here. Any clarification is very helpful.

NOTE: I selected time-based events.

---

<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: [February 11, 2016, 11:42pm UTC](https://discuss.elastic.co/t/list-of-fields-in-indicies-configure-index-pattern-in-kibana/41565/2 "2016-02-11T23:42:49Z")

</div>

I suspect that the field mappings do exist with both cases in your cluster. You can verify this my looking at the raw mappings output and seeing if all 4 exist.

`http://localhost:9200/_all/_mapping/?pretty=true` would show you mappings on ALL indexes  
`http://localhost:9200/index_pattern*/_mapping/?pretty=true` would show mappings for indexes matching that pattern.

Assuming your cluster is exposed at localhost:9200, of course.

If you _don't_ see all 4 in the output, it's possible this is a bug in Kibana.

---

<div class="post-metadata">

### Author: ![Karthik\_Ramachandran](https://avatars.discourse-cdn.com/v4/letter/k/f19dbf/32.png) [@Karthik\_Ramachandran](https://discuss.elastic.co/u/Karthik_Ramachandran)
#### Post date: [February 11, 2016, 11:53pm UTC](https://discuss.elastic.co/t/list-of-fields-in-indicies-configure-index-pattern-in-kibana/41565/3 "2016-02-11T23:53:37Z")

</div>

I found the cause for this. But not sure of the fix as I use NEST to push data in.

Below the code I used to push data in. But, IndexDoc converts the first character to small case for each attribute. IndexClass is from NEST and I'm not sure if there is any property to set it.

IndexClass idx = new IndexClass();  
idx.IndexDoc(currentFile, indexName, englishTypeName);

---

<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: [February 12, 2016, 12:03am UTC](https://discuss.elastic.co/t/list-of-fields-in-indicies-configure-index-pattern-in-kibana/41565/4 "2016-02-12T00:03:57Z")

</div>

Hrm, I really don't know anything about the NEST client. I'm also not sure where to go to ask questions about the clients in general.

You might try posting in the elasticsearch section, someone there might be able to help, or at least point you in the right direction.

> **[Elasticsearch](https://discuss.elastic.co/c/elasticsearch)**
>
> Any questions related to Elasticsearch, including specific features, language clients and plugins.

---

<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, 2:02pm UTC](https://discuss.elastic.co/t/list-of-fields-in-indicies-configure-index-pattern-in-kibana/41565/5 "2017-07-06T14:02:28Z")

</div>


