Help Center/ Cloud Search Service/ Troubleshooting/ Functions/ Index Patterns Cannot Be Created for an Elasticsearch Cluster
Updated on 2025-10-11 GMT+08:00

Index Patterns Cannot Be Created for an Elasticsearch Cluster

Symptom

When I click Create index pattern on the Kibana console, nothing happens, so I cannot create an index pattern.

Possible Cause

  1. Check whether the disk is full, which leads to the read-only state of the .kibana index.
  2. Check whether there are multiple Kibana indexes.

Solution

Run the following command to delete unnecessary indexes to release disk space:
PUT .kibana/_settings
{
  "index": {
    "blocks": {
      "read_only_allow_delete": "null"
    }
  }
}