connector
Elasticsearch logo

Elasticsearch

Search and analytics engine — query indices for dashboards.

Connection fields

FieldRequiredDescription
hostYesHostname or IP address of the Elasticsearch node/cluster.
portNoDefaults to 9200.
userNoUsername, if the cluster requires auth.
passwordNoPassword for user.
use_httpsNoUse HTTPS. Defaults to false.
indexNoDefault 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"
}