Skip to content

Instantly share code, notes, and snippets.

@gigkokman
Created August 13, 2015 08:00
Show Gist options
  • Save gigkokman/4ff19619c4b8089219d5 to your computer and use it in GitHub Desktop.
Save gigkokman/4ff19619c4b8089219d5 to your computer and use it in GitHub Desktop.
Error: IndexPattern's configured pattern does not match any indices [Solved]
## 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