Hi,
I have one field that has "index": "no", but I can see that it's still searchable in Kibana, what could be the issue? I can't find the problem here, it's running on ES 2.3. By still searchable in Kibana it's because I see that the zoom icon on the field is black and not greyed when your field is not searchable.
Field mapping:
{
app-2016.10.12:{
mappings:{
app-syslog:{
response:{
full_name:"response",
mapping:{
response:{
type:"string",
index:"no"
}
}
}
}
}
}
}
This is the template I'm using:
{
"order": 0,
"template": "*",
"mappings": {
"app-syslog": {
"properties": {
"request": { "index": "no", "type": "string" },
"response": { "index": "no", "type": "string" }
}
},
"_default_": {
"_all": {
"enabled": true
},
"_source": {
"enabled": true
},
"dynamic_templates": [
{
"notanalyzed": {
"match": "*",
"match_mapping_type": "string",
"mapping": {
"type": "string",
"index": "not_analyzed",
"include_in_all": true
}
}
}
]
}
}
}