Problem:
Need to get familar with Kibana and DevTools on Amazon ES.
Solution Summary:
Kibana dashboard URL is available on your Amazon ES domain overview tab. If you are logged in to AWS console, you can simply click on the link and go to Kibana Dashboard. With DevTools, part of Kibana, you can easily run queries against the elastic search cluster and view the response.
Solution Steps:
-
Login to Kibana following the link available in your domain overview page.
-
Explore and read about various options in main content area such as: APM, Logging, Metrics, Security Analytics, Visualize and Explore Data, Manage and Administer the Elastic Stack.
-
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