WARNING: Version 6.1 of Kibana has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Index and Type filtering
editIndex and Type filtering
editBy default, all queries executed by the Search Profiler are sent
to GET /_search
. It searches across your entire cluster (all indices, all types).
If you need to query a specific index or type (or several), you can use the Index and Type filters at the top-left of the UI
In the following example, the query is executed against the indices my_index
and my_index1
and the type my_type
:
This is equivalent to GET /my_index,my_index2/my_type/_search
.