# No results in .raw fields

**URL:** https://discuss.elastic.co/t/no-results-in-raw-fields/36193
**Category:** Kibana
**Created:** [December 2, 2015, 3:32pm UTC](https://discuss.elastic.co/t/no-results-in-raw-fields/36193 "2015-12-02T15:32:50Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![ayasha88](https://avatars.discourse-cdn.com/v4/letter/a/d6d6ee/32.png) [@ayasha88](https://discuss.elastic.co/u/ayasha88)
#### Post date: [December 2, 2015, 3:32pm UTC](https://discuss.elastic.co/t/no-results-in-raw-fields/36193/1 "2015-12-02T15:32:50Z")

</div>

Hi I can not see any results in my raw fields..  
This is my index template:  
`{ "log-2015.12.02": { "aliases": {}, "mappings": { "_default_": { "_all": { "enabled": true, "omit_norms": true }, "dynamic_templates": [{ "message_field": { "mapping": { "index": "analyzed", "omit_norms": true, "type": "string", "fields": { "raw": { "ignore_above": 256, "index": "not_analyzed", "type": "string" } } }, "match": "message", "match_mapping_type": "string" } }, { "string_fields": { "mapping": { "index": "analyzed", "omit_norms": true, "type": "string", "fields": { "raw": { "ignore_above": 2, "index": "not_analyzed", "type": "string" } } }, "match": "*", "match_mapping_type": "string" } }] }, "logEvent": { "_all": { "enabled": true, "omit_norms": true }, "dynamic_templates": [{ "message_field": { "mapping": { "index": "analyzed", "omit_norms": true, "type": "string", "fields": { "raw": { "ignore_above": 256, "index": "not_analyzed", "type": "string" } } }, "match": "message", "match_mapping_type": "string" } }, { "string_fields": { "mapping": { "index": "analyzed", "omit_norms": true, "type": "string", "fields": { "raw": { "ignore_above": 2, "index": "not_analyzed", "type": "string" } } }, "match": "*", "match_mapping_type": "string" } }], "properties": { "className": { "type": "string", "norms": { "enabled": false }, "fields": { "raw": { "type": "string", "index": "not_analyzed", "ignore_above": 2 } } }, "messageObject": { "type": "object" }, "properties": { "properties": { "@timestamp": { "type": "date", "format": "strict_date_optional_time||epoch_millis" }, "page": { "type": "string", "norms": { "enabled": false }, "fields": { "raw": { "type": "string", "index": "not_analyzed", "ignore_above": 2 } } } } } } } }, "settings": { "index": { "creation_date": "1449044015188", "refresh_interval": "5s", "number_of_shards": "5", "number_of_replicas": "1", "uuid": "mqENQQ_5QEu1rsaJRik_qg", "version": { "created": "2000099" } } }, "warmers": {} },`

In the non .raw fields I can see all my results.. Why is this? Please help me!

---

<div class="post-metadata">

### Author: ![ayasha88](https://avatars.discourse-cdn.com/v4/letter/a/d6d6ee/32.png) [@ayasha88](https://discuss.elastic.co/u/ayasha88)
#### Post date: [December 2, 2015, 3:42pm UTC](https://discuss.elastic.co/t/no-results-in-raw-fields/36193/2 "2015-12-02T15:42:03Z")

</div>

I am interested in the `page` field..

---

<div class="post-metadata">

### Author: ![tbragin](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/tbragin/32/45166_2.png) [@tbragin](https://discuss.elastic.co/u/tbragin)
#### Post date: [December 9, 2015, 5:12am UTC](https://discuss.elastic.co/t/no-results-in-raw-fields/36193/3 "2015-12-09T05:12:31Z")

</div>

Do you see this data in Elasticsearch?

---

<div class="post-metadata">

### Author: ![ayasha88](https://avatars.discourse-cdn.com/v4/letter/a/d6d6ee/32.png) [@ayasha88](https://discuss.elastic.co/u/ayasha88)
#### Post date: [December 9, 2015, 7:59am UTC](https://discuss.elastic.co/t/no-results-in-raw-fields/36193/4 "2015-12-09T07:59:44Z")

</div>

No in elasticsearch i can't see the data of the .raw fields either.. I tried

`POST log-*/_search { "size": 0, "query": { "filtered": { "query": { "query_string": { "query": "*", "analyze_wildcard": true } }, "filter": { "bool": { "must": [{ "range": { "timeStamp": { "gte": 1447056537765, "lte": 1449648537765, "format": "epoch_millis" } } }], "must_not": [] } } } }, "aggs": { "2": { "terms": { "field": "properties.page.raw", "size": 5, "order": { "_count": "desc" } } } } }`

with no results and then the same without .raw with many results.

---

<div class="post-metadata">

### Author: ![ayasha88](https://avatars.discourse-cdn.com/v4/letter/a/d6d6ee/32.png) [@ayasha88](https://discuss.elastic.co/u/ayasha88)
#### Post date: [December 9, 2015, 8:17am UTC](https://discuss.elastic.co/t/no-results-in-raw-fields/36193/5 "2015-12-09T08:17:08Z")

</div>

Moreover if i go in Discover and I undo "Hide missing fields" all the .raw fields are visible but are empty.. Why is this??

---

<div class="post-metadata">

### Author: ![tbragin](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/tbragin/32/45166_2.png) [@tbragin](https://discuss.elastic.co/u/tbragin)
#### Post date: [December 9, 2015, 2:36pm UTC](https://discuss.elastic.co/t/no-results-in-raw-fields/36193/6 "2015-12-09T14:36:17Z")

</div>

Kibana can only show you what is in Elasticsearch, so if they are not in ES, they won't show up in Kibana either. You're likely having a problem correctly parsing the data. If you're using Logstash, I'd post a thread in that forum.

---

<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:07pm UTC](https://discuss.elastic.co/t/no-results-in-raw-fields/36193/7 "2017-07-06T14:07:04Z")

</div>


