Hi Experts,
I have the following Mapping for my index .
{
"template_main":{
"template" : "cef*",
"settings" : {
"number_of_shards" : 5,
"index.cache.field.type" : "soft",
"index.refresh_interval" : "5s",
"index.store.compress.stored" : true,
"index.routing.allocation.total_shards_per_node" : 5,
"index":{
"analysis":{
"analyzer":{
"analyzer_keyword":{
"type" : "custom",
"tokenizer": "standard",
"filter": [ "lowercase", "stop" ]
}
}
}
}
},
"mappings" : {
"_default_" : {
"_all" : {"enabled" : false},
"_source" : { "enabled" : false },
"properties" : {
"rt": {"type": "date","store":"yes","include_in_all" : true},
"alertmsg": {"type": "string","store":"yes","include_in_all" : true}
}
}
}
}
}
since I am storing 2 field rt and alertmsg why I cannot see anything in discover tab ? Any idea what I am missing.
Thanks
VG