Elasticsearch integration (Data, Developer Tools). Imported from open-connector.
{base_url}/_cluster/health
/_cat/indices
| Param | Type | Required | Description |
|---|---|---|---|
| index | string | optional | A comma-separated list of index names or wildcard expressions to limit the retu… |
| health | string | optional | Filter indices by health status. |
| sortBy | string | optional | A comma-separated list of cat indices columns to sort by, such as index or docs… |
| expandWildcards | string | optional | The comma-separated wildcard expansion modes for index patterns. |
| includePrimaryShardsOnly | boolean | optional | Whether to return only primary shard information. |
/{indexName}/_search
| Param | Type | Required | Description |
|---|---|---|---|
| indexName | string | required | The Elasticsearch index name. |
| query | string | optional | A free-text query_string query. |
| from | integer | optional | The starting offset for search pagination. |
| size | integer | optional | The number of search results to return, capped at 1000. |
| fields | array | optional | Specific document source fields to return. |
| highlight | boolean | optional | Whether to request highlights for the search query. |
| sort | array | optional | Sort order for search results. |
| termFilters | array | optional | Exact term filters for specific field values. |
| rangeFilters | array | optional | Range filters for fields. |
| timeFilter | object | optional | A time-based range filter for timestamp fields. |