Reputation: 846
I am trying to find out the url of the elasticsearch configured in kibana. but i dont have access to the backend configurations. Is there a way to see which elasticsearch url has been configured in kibana using the kibana front end.
Thanks
Upvotes: 6
Views: 16018
Reputation: 70
If you don't have access to the Monitoring you could use Dev Tools and query all nodes in the connected ES cluster using query GET /_nodes, like this:
Upvotes: 5
Reputation: 379
Use GET /
in the kibana console and this will give your elastic search database url name.
Upvotes: 3
Reputation: 217554
If you have the X-Pack Monitoring plugin enabled, you can go to "Monitoring > Elasticsearch > Nodes" and you can see the nodes that are reachable from Kibana.
Upvotes: 1