listIndexes
Retrieve and filter all available indexes in OpenSearch using a specific pattern to manage and analyze Wazuh security logs efficiently.
Instructions
List all available indexes in OpenSearch
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pattern | No | Index pattern to filter (e.g., 'logs-*') | * |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"pattern": {
"default": "*",
"description": "Index pattern to filter (e.g., 'logs-*')",
"type": "string"
}
},
"type": "object"
}