Multiple elastic search in kibana

I have two Elasticsearch running and single kibana
I want to point both to single kibana
kibana.yml

elasticsearch.hosts: ["http://localhost:9200","http://localhost:9201"]

any other changes to made?

Hi @mangeshs ,

You can connect Kibana to multiple ES node since version 6.6, you can find it in official documentation
Syntax for 7.15 is

kibana.yml

elasticsearch.hosts:
  - http://localhost:9200
  - http://localhost:9201

Regards, Dzmitry

Just to add to this, you cannot point Kibana to multiple Elasticsearch clusters like this, only multiple nodes in the same cluster.

If you want to point Kibana to multiple clusters, you need to use CCS.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.