diff --git a/src/core_plugins/console/public/src/directives/help.html b/src/core_plugins/console/public/src/directives/help.html index 5fbb645b095e..e3d07e999045 100644 --- a/src/core_plugins/console/public/src/directives/help.html +++ b/src/core_plugins/console/public/src/directives/help.html @@ -1,40 +1,38 @@ -
Quick intro to the UI
+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. -
+Quick intro to the UI
-Console understands requests in a compact format, similar to cURL:
-
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. -
+Console understands requests in a compact format, similar to cURL:
+
A few quick tips, while I have your attention
-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. +
- +A few quick tips, while I have your attention
+200+
status:200+
Find requests that contain the number 200, in any field:
+
+ 200
+
+ status:[400 TO 499]+
Or we can search in a specific field. Find 200 in the status field:
+
+ status:200
+
+ status:[400 TO 499] AND extension:PHP+
Find all status codes between 400-499:
+
+ status:[400 TO 499]
+
+ status:[400 TO 499] AND (extension:php OR extension:html)+
Find status codes 400-499 with the extension php:
+
+ status:[400 TO 499] AND extension:PHP
+
+ Or HTML
+
+ status:[400 TO 499] AND (extension:php OR extension:html)
+
+ - Data already in Elasticsearch? -
-+ Data already in Elasticsearch? +
++ Didn’t find what you were looking for? +
+