I use _all as an index pattern, and this causes kibana-4 to search for all possible indexes. Since kibana-4 has its own .kibana index, it tries to find the required data in the .kibana index, and since it does not parse the data there, it throws some exceptions for parsing. So, is there any way I can configure kibana-4 to exclude .kibana for search.
I was able to successfully ignore the .kibana index using the following query:
.kibana
curl 'localhost:9200/*,-*kibana/_search?q=*:*'
This will search for all indexes (first "*"), excluding all indexes that end with "Kibana".
You can create your own alias similar to _all and use it in kibana. Or you can simply exclude the .kibana index from the alias of the all index.
Source: https://habr.com/ru/post/986348/More articles:How to clone a specific branch in git bitbucket - gitBit matrix rotation - javaDocker Compose and run the command when the container starts - dockerUpdate permission not allowed: how to update pip on Mac OS X? - pythonsupport for Android (cardView, RecyclerView) support in older versions with target kitkat - androidSeparate definitions of variation patterns - c ++Angular ui-router: links are not viewable - javascriptJavascript: functions are called when the page loads instead of onclick / onsubmit - javascriptHow to change the button several times when pressed? - iosHeroku yii2-app-basic not logging - loggingAll Articles