Problem:
Need to get familar with Kibana and DevTools on Elastc Cloud.
Solution Summary:
Kibana dashboard URL is available on your Elastic Cloud account. You can use the username and password which you saved while creating the cluster. With DevTools, part of Kibana, you can easily run queries against the elastic search cluster and view the response.
Solution Steps:
-
Login to Kibana dashboard URL (URL from your Elastic Cloud account)
-
Once you login you should see a message on top as:
-
X-Pack is installed. Sharing your cluster statistics with us helps us improve. Your data is never shared with anyone. Not interested? Opt out here. You may dismiss this message.
-
Explore various options (screenshots attached in the end.)
-
-
Click on DevTools on left.
-
Dev Tools will give you some welcome message including some instructions:
-
The Console UI is split into two panes: an editor pane (left) and a response pane (right). Use the editor to type requests and submit them to Elasticsearch. The results will be displayed in the response pane on the right side.
-
While typing a request, Console will make suggestions which you can then accept by hitting Enter/Tab. These suggestions are made based on the request structure as well as your indices and types.
-
Submit requests to ES using the green triangle button.
-
Use the wrench menu for other useful things.
-
You can paste requests in cURL format and they will be translated to the Console syntax.
-
You can resize the editor and output panes by dragging the separator between them.
-
Study the keyboard shortcuts under the Help button. Good stuff in there!
-
-
Read all tips and click on "Get To Work".
-
You should see a default _search query.
-
GET _search
{
"query": {
"match_all": {}
}
}
-
-
Click the execute button and explore the response. You may not understand most of it, but should be clearer once you go along with the notes.
Recent comments