get_index
Retrieve details such as mappings, settings, and aliases for specific indices in Elasticsearch.
Instructions
Returns information (mappings, settings, aliases) about one or more indices.
Args:
index: Name of the index
Input Schema
Name | Required | Description | Default |
---|---|---|---|
index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"index": {
"title": "Index",
"type": "string"
}
},
"required": [
"index"
],
"type": "object"
}