Katiyman
Katiyman

Reputation: 846

Elasticsearch url from Kibana

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

Answers (3)

OlegG
OlegG

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: screenshot with GET /_nodes command

Upvotes: 5

abhishek kumar
abhishek kumar

Reputation: 379

Use GET / in the kibana console and this will give your elastic search database url name.

Upvotes: 3

Val
Val

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

Related Questions