Kibana 6.5.4 Create index pattern stuck Kibana 6.5.4 Create index pattern stuck elasticsearch elasticsearch

Kibana 6.5.4 Create index pattern stuck


updating the cluster and removing blocks from the indices worked for me:

curl -X PUT \  localhost:9200/_all/_settings \  -d '{"index.blocks.read_only_allow_delete": null}'curl -X PUT \  localhost:9200/_cluster/settings \  -d '{ "transient": { "cluster.routing.allocation.disk.threshold_enabled": false } }'


Use developer console and try the following commands the check the existence of the index.

 GET <index-pattern>/_search    {  "query": {    "match_all": {}  }}

Also, check your elastic logs for any error.