Elasticsearch
Search, index, and manage data in Elasticsearch
Elasticsearch is a powerful distributed search and analytics engine that enables you to index, search, and analyze large volumes of data in real time. It’s widely used for powering search features, log and event data analytics, observability, and more.
With Elasticsearch in Sim, you gain programmatic access to core Elasticsearch capabilities, including:
- Search documents: Perform advanced searches on structured or unstructured text using Query DSL, with support for sorting, pagination, and field selection.
- Index documents: Add new documents or update existing ones in any Elasticsearch index for immediate retrieval and analysis.
- Get, update, or delete documents: Retrieve, modify, or remove specific documents by ID.
- Bulk operations: Execute multiple indexing or update actions in a single request for high-throughput data processing.
- Manage indexes: Create, delete, or get details about indexes as part of your workflow automation.
- Cluster monitoring: Check the health and stats of your Elasticsearch deployment.
Sim's Elasticsearch tools work with both self-hosted and Elastic Cloud environments. Integrate Elasticsearch into your agent workflows to automate data ingestion, search across vast datasets, run reporting, or build custom search-powered applications – all without manual intervention.
Integrate Elasticsearch into workflows for powerful search, indexing, and data management. Supports document CRUD operations, advanced search queries, bulk operations, index management, and cluster monitoring. Works with both self-hosted and Elastic Cloud deployments.
Search documents in Elasticsearch using Query DSL. Returns matching documents with scores and metadata.
| Parameter | Type | Required | Description |
|---|
deploymentType | string | Yes | Deployment type: self_hosted or cloud |
host | string | No | Elasticsearch host URL (for self-hosted) |
cloudId | string | No | Elastic Cloud ID (for cloud deployments) |
authMethod | string | Yes | Authentication method: api_key or basic_auth |
apiKey | string | No | Elasticsearch API key |
username | string | No | Username for basic auth |
password | string | No | Password for basic auth |
index | string | Yes | Index name to search |
query | string | No | Query DSL as JSON string |
from | number | No | Starting offset for pagination (default: 0) |
size | number | No | Number of results to return (default: 10) |
sort | string | No | Sort specification as JSON string |
sourceIncludes | string | No | Comma-separated list of fields to include in _source |
sourceExcludes | string | No | Comma-separated list of fields to exclude from _source |
trackTotalHits | boolean | No | Track accurate total hit count (default: true) |
| Parameter | Type | Description |
|---|
took | number | Time in milliseconds the search took |
timed_out | boolean | Whether the search timed out |
hits | object | Search results with total count and matching documents |
aggregations | json | Aggregation results if any |
Index (create or update) a document in Elasticsearch.
| Parameter | Type | Required | Description |
|---|
deploymentType | string | Yes | Deployment type: self_hosted or cloud |
host | string | No | Elasticsearch host URL (for self-hosted) |
cloudId | string | No | Elastic Cloud ID (for cloud deployments) |
authMethod | string | Yes | Authentication method: api_key or basic_auth |
apiKey | string | No | Elasticsearch API key |
username | string | No | Username for basic auth |
password | string | No | Password for basic auth |
index | string | Yes | Target index name |
documentId | string | No | Document ID (auto-generated if not provided) |
document | string | Yes | Document body as JSON string |
refresh | string | No | Refresh policy: true, false, or wait_for |
| Parameter | Type | Description |
|---|
_index | string | Index where the document was stored |
_id | string | Document ID |
_version | number | Document version |
result | string | Operation result (created or updated) |
Retrieve a document by ID from Elasticsearch.
| Parameter | Type | Required | Description |
|---|
deploymentType | string | Yes | Deployment type: self_hosted or cloud |
host | string | No | Elasticsearch host URL (for self-hosted) |
cloudId | string | No | Elastic Cloud ID (for cloud deployments) |
authMethod | string | Yes | Authentication method: api_key or basic_auth |
apiKey | string | No | Elasticsearch API key |
username | string | No | Username for basic auth |
password | string | No | Password for basic auth |
index | string | Yes | Index name |
documentId | string | Yes | Document ID to retrieve |
sourceIncludes | string | No | Comma-separated list of fields to include |
sourceExcludes | string | No | Comma-separated list of fields to exclude |
| Parameter | Type | Description |
|---|
_index | string | Index name |
_id | string | Document ID |
_version | number | Document version |
found | boolean | Whether the document was found |
_source | json | Document content |
Partially update a document in Elasticsearch using doc merge.
| Parameter | Type | Required | Description |
|---|
deploymentType | string | Yes | Deployment type: self_hosted or cloud |
host | string | No | Elasticsearch host URL (for self-hosted) |
cloudId | string | No | Elastic Cloud ID (for cloud deployments) |
authMethod | string | Yes | Authentication method: api_key or basic_auth |
apiKey | string | No | Elasticsearch API key |
username | string | No | Username for basic auth |
password | string | No | Password for basic auth |
index | string | Yes | Index name |
documentId | string | Yes | Document ID to update |
document | string | Yes | Partial document to merge as JSON string |
retryOnConflict | number | No | Number of retries on version conflict |
| Parameter | Type | Description |
|---|
_index | string | Index name |
_id | string | Document ID |
_version | number | New document version |
result | string | Operation result (updated or noop) |
Delete a document from Elasticsearch by ID.
| Parameter | Type | Required | Description |
|---|
deploymentType | string | Yes | Deployment type: self_hosted or cloud |
host | string | No | Elasticsearch host URL (for self-hosted) |
cloudId | string | No | Elastic Cloud ID (for cloud deployments) |
authMethod | string | Yes | Authentication method: api_key or basic_auth |
apiKey | string | No | Elasticsearch API key |
username | string | No | Username for basic auth |
password | string | No | Password for basic auth |
index | string | Yes | Index name |
documentId | string | Yes | Document ID to delete |
refresh | string | No | Refresh policy: true, false, or wait_for |
| Parameter | Type | Description |
|---|
_index | string | Index name |
_id | string | Document ID |
_version | number | Document version |
result | string | Operation result (deleted or not_found) |
Perform multiple index, create, delete, or update operations in a single request for high performance.
| Parameter | Type | Required | Description |
|---|
deploymentType | string | Yes | Deployment type: self_hosted or cloud |
host | string | No | Elasticsearch host URL (for self-hosted) |
cloudId | string | No | Elastic Cloud ID (for cloud deployments) |
authMethod | string | Yes | Authentication method: api_key or basic_auth |
apiKey | string | No | Elasticsearch API key |
username | string | No | Username for basic auth |
password | string | No | Password for basic auth |
index | string | No | Default index for operations that do not specify one |
operations | string | Yes | Bulk operations as NDJSON string (newline-delimited JSON) |
refresh | string | No | Refresh policy: true, false, or wait_for |
| Parameter | Type | Description |
|---|
took | number | Time in milliseconds the bulk operation took |
errors | boolean | Whether any operation had an error |
items | array | Results for each operation |
Count documents matching a query in Elasticsearch.
| Parameter | Type | Required | Description |
|---|
deploymentType | string | Yes | Deployment type: self_hosted or cloud |
host | string | No | Elasticsearch host URL (for self-hosted) |
cloudId | string | No | Elastic Cloud ID (for cloud deployments) |
authMethod | string | Yes | Authentication method: api_key or basic_auth |
apiKey | string | No | Elasticsearch API key |
username | string | No | Username for basic auth |
password | string | No | Password for basic auth |
index | string | Yes | Index name to count documents in |
query | string | No | Optional query to filter documents (JSON string) |
| Parameter | Type | Description |
|---|
count | number | Number of documents matching the query |
_shards | object | Shard statistics |
Create a new index with optional settings and mappings.
| Parameter | Type | Required | Description |
|---|
deploymentType | string | Yes | Deployment type: self_hosted or cloud |
host | string | No | Elasticsearch host URL (for self-hosted) |
cloudId | string | No | Elastic Cloud ID (for cloud deployments) |
authMethod | string | Yes | Authentication method: api_key or basic_auth |
apiKey | string | No | Elasticsearch API key |
username | string | No | Username for basic auth |
password | string | No | Password for basic auth |
index | string | Yes | Index name to create |
settings | string | No | Index settings as JSON string |
mappings | string | No | Index mappings as JSON string |
| Parameter | Type | Description |
|---|
acknowledged | boolean | Whether the request was acknowledged |
shards_acknowledged | boolean | Whether the shards were acknowledged |
index | string | Created index name |
Delete an index and all its documents. This operation is irreversible.
| Parameter | Type | Required | Description |
|---|
deploymentType | string | Yes | Deployment type: self_hosted or cloud |
host | string | No | Elasticsearch host URL (for self-hosted) |
cloudId | string | No | Elastic Cloud ID (for cloud deployments) |
authMethod | string | Yes | Authentication method: api_key or basic_auth |
apiKey | string | No | Elasticsearch API key |
username | string | No | Username for basic auth |
password | string | No | Password for basic auth |
index | string | Yes | Index name to delete |
| Parameter | Type | Description |
|---|
acknowledged | boolean | Whether the deletion was acknowledged |
Retrieve index information including settings, mappings, and aliases.
| Parameter | Type | Required | Description |
|---|
deploymentType | string | Yes | Deployment type: self_hosted or cloud |
host | string | No | Elasticsearch host URL (for self-hosted) |
cloudId | string | No | Elastic Cloud ID (for cloud deployments) |
authMethod | string | Yes | Authentication method: api_key or basic_auth |
apiKey | string | No | Elasticsearch API key |
username | string | No | Username for basic auth |
password | string | No | Password for basic auth |
index | string | Yes | Index name to retrieve info for |
| Parameter | Type | Description |
|---|
index | json | Index information including aliases, mappings, and settings |
Get the health status of the Elasticsearch cluster.
| Parameter | Type | Required | Description |
|---|
deploymentType | string | Yes | Deployment type: self_hosted or cloud |
host | string | No | Elasticsearch host URL (for self-hosted) |
cloudId | string | No | Elastic Cloud ID (for cloud deployments) |
authMethod | string | Yes | Authentication method: api_key or basic_auth |
apiKey | string | No | Elasticsearch API key |
username | string | No | Username for basic auth |
password | string | No | Password for basic auth |
waitForStatus | string | No | Wait until cluster reaches this status: green, yellow, or red |
timeout | string | No | Timeout for the wait operation (e.g., 30s, 1m) |
| Parameter | Type | Description |
|---|
cluster_name | string | Name of the cluster |
status | string | Cluster health status: green, yellow, or red |
number_of_nodes | number | Total number of nodes in the cluster |
number_of_data_nodes | number | Number of data nodes |
active_shards | number | Number of active shards |
unassigned_shards | number | Number of unassigned shards |
Get comprehensive statistics about the Elasticsearch cluster.
| Parameter | Type | Required | Description |
|---|
deploymentType | string | Yes | Deployment type: self_hosted or cloud |
host | string | No | Elasticsearch host URL (for self-hosted) |
cloudId | string | No | Elastic Cloud ID (for cloud deployments) |
authMethod | string | Yes | Authentication method: api_key or basic_auth |
apiKey | string | No | Elasticsearch API key |
username | string | No | Username for basic auth |
password | string | No | Password for basic auth |
| Parameter | Type | Description |
|---|
cluster_name | string | Name of the cluster |
status | string | Cluster health status |
nodes | object | Node statistics including count and versions |
indices | object | Index statistics including document count and store size |
- Category:
tools
- Type:
elasticsearch