I have indices which do not correlate to certain dates/time ranges, they instead correlate to data sources(however are considered the same _type, this structure is a must for my purposes)
I would simply like to be able to filter by index (and therefore make a visualizer which allows users to click and search by index),
I have noticed that the _index field is not indexed! so I went along and found this
{
"tweet" : {
"_index" : { "enabled" : true }
}
}
in the api docs, however after running this on all(and I can see that the command stuck when fetching my mappings for the indices) however when checking in kibana 4 it still says false in regards to the field being indexed(rendering it unsearchable!)
am I missing a command? or a silly option in kibana 4 that lets you switch indices?(they have similary name structures foo_[locationSource] and my default mapping/index is routed to foo_*
thank you all