Created
August 13, 2015 08:00
-
-
Save gigkokman/4ff19619c4b8089219d5 to your computer and use it in GitHub Desktop.
Error: IndexPattern's configured pattern does not match any indices [Solved]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Kibana Discover tab show error: | |
Error: IndexPattern's configured pattern does not match any indices | |
Solved: | |
Setting index.query.default_field to _all | |
1. Close index | |
POST <index>/_close | |
2. Setting default_field | |
PUT <index>/_setting | |
{"index.query.default_field" :"_all"} | |
3. Open index | |
POST <index>/_open |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment