Add note to getting-started doc about CONSOLE

Link to the documentation for CONSOLE in getting-started so the
layout of the snippet makes some sense.

Relates to #21158
This commit is contained in:
Nik Everett 2016-10-30 00:09:09 -04:00
parent 1bbd3c5400
commit b5f86f6f05

View File

@ -198,7 +198,10 @@ Now that we have our node (and cluster) up and running, the next step is to unde
Let's start with a basic health check, which we can use to see how our cluster is doing. We'll be using curl to do this but you can use any tool that allows you to make HTTP/REST calls. Let's assume that we are still on the same node where we started Elasticsearch on and open another command shell window.
To check the cluster health, we will be using the <<cat,`_cat` API>>. Remember previously that our node HTTP endpoint is available at port `9200`:
To check the cluster health, we will be using the <<cat,`_cat` API>>. You can
run the command below in https://www.elastic.co/guide/en/kibana/{branch}/console-kibana.html[Kibana's Console]
by clicking "VIEW IN CONSOLE" or with `curl` by clicking the "COPY AS CURL"
link below and pasting the into a terminal.
[source,js]
--------------------------------------------------