connector
Elasticsearch
Search and analytics engine — query indices for dashboards.
Connection fields
| Field | Required | Description |
|---|---|---|
host | Yes | Hostname or IP address of the Elasticsearch node/cluster. |
port | No | Defaults to 9200. |
user | No | Username, if the cluster requires auth. |
password | No | Password for user. |
use_https | No | Use HTTPS. Defaults to false. |
index | No | Default index to query when a query doesn't specify one. |
Query text must be Elasticsearch Query DSL (JSON), not SQL — optionally prefix it with an index name and a newline (e.g. orders\n{"query": {"match_all": {}}}) to target a specific index for that one query; otherwise it falls back to the configured default index, or every index if none is set.
Example configuration
{
"host": "es.internal.example.com",
"port": 9200,
"user": "arcodash_reader",
"password": "••••••••",
"use_https": true,
"index": "orders"
}