How can I get my kibana and elasticsearch url? for the filebeat?

Thanks,
How can I know my kibana and Elasticsearch url?

output.elasticsearch:
  hosts: ["<es_url>"]
  username: "elastic"
  password: "<password>"
setup.kibana:
  host: "<kibana_url>"

how can I get these?
thanks

Hi Frida

Do you have access to kibana? Do you know where it's running? The URL usually goes by http://host|IP:5601

You can get the Elasticsearch cluster nodes info, such as host and IP, on Kibana dev console (assuming you have access to it) running the query below.

GET _nodes

The es_url looks like this http://host|IP:9200

1 Like

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