list_indices
Retrieve detailed information on all Elasticsearch indices matching a specified pattern, facilitating efficient data discovery and management.
Instructions
List all available Elasticsearch indices with detailed information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
indexPattern | Yes | Pattern of Elasticsearch indices to list (e.g., "logs-*") |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"indexPattern": {
"description": "Pattern of Elasticsearch indices to list (e.g., \"logs-*\")",
"minLength": 1,
"type": "string"
}
},
"required": [
"indexPattern"
],
"type": "object"
}