Elasticsearch
elasticsearchElasticsearch is a distributed, RESTful search and analytics engine capable of addressing a growing number of use cases. It provides real-time search and analytics for all types of data.
Acciones disponibles (3)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Get Index SchemaELASTICSEARCH_GET_INDEX_SCHEMAAcciónTool to get the complete schema/mapping of a specific elasticsearch index. use when you need to understand the structure, field types, and mappings of an index.
ELASTICSEARCH_GET_INDEX_SCHEMAAcciónTool to get the complete schema/mapping of a specific elasticsearch index. use when you need to understand the structure, field types, and mappings of an index.
Parámetros de entrada
index_namestringObligatorioThe name of the index to get schema information for.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List IndicesELASTICSEARCH_LIST_INDICESAcciónTool to list all available elasticsearch indices. use when you need to get a list of indices in your elasticsearch cluster, optionally filtering by pattern, health status, or other criteria.
ELASTICSEARCH_LIST_INDICESAcciónTool to list all available elasticsearch indices. use when you need to get a list of indices in your elasticsearch cluster, optionally filtering by pattern, health status, or other criteria.
Parámetros de entrada
indexstringA comma-separated string of index names or wildcard expressions to limit the returned information. For example, 'my-index-*,another-index'. If not provided, information for all indices is returned.
healthstringenumThe health status to filter indices by (green, yellow, or red).
greenyellowredsort_bystringA comma-separated string of column names to sort by. For example, 'index,health'.
expand_wildcardsstringenumType of index that wildcard patterns can match. Supports comma-separated values, e.g., 'open,hidden'. 'all' matches all indices by default.
openclosedhiddennoneallinclude_primary_shards_onlybooleanIf true, only shows information about primary shards.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Query IndexELASTICSEARCH_QUERY_INDEXAcciónTool to query an elasticsearch index with various filters, time ranges, and pagination support. use when you need to search for documents in an index with complex filtering criteria.
ELASTICSEARCH_QUERY_INDEXAcciónTool to query an elasticsearch index with various filters, time ranges, and pagination support. use when you need to search for documents in an index with complex filtering criteria.
Parámetros de entrada
fromintegerStarting offset for pagination (default: 0)
sizeintegerNumber of results to return (default: 10, max: 1000 to prevent context overload)
sortobject[]Sort order for results
querystringFree text search query (uses query_string query)
fieldsstring[]Specific fields to return (if not specified, returns all fields)
highlightbooleanEnable highlighting for search terms
index_namestringObligatorioThe name of the index to query
time_filterobjectTime-based filter for timestamp fields
term_filtersobject[]Exact term filters for specific field values
range_filtersobject[]Range filters for numeric or date fields
include_aggregationsbooleanInclude aggregations in the response
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not