WARNING: Version 1.5 of Elasticsearch 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.
cat aliases
editcat aliases
editaliases
shows information about currently configured aliases to indices
including filter and routing infos.
% curl '192.168.56.10:9200/_cat/aliases?v' alias index filter indexRouting searchRouting alias2 test1 * - - alias4 test1 - 2 1,2 alias1 test1 - - - alias3 test1 - 1 1
The output shows that alias
has configured a filter, and specific routing
configurations in alias3
and alias4
.
If you only want to get information about a single alias, you can specify
the alias in the URL, for example /_cat/aliases/alias1
.