Get index template information
Added in 5.2.0
Get information about the index templates in a cluster. You can use index templates to apply index settings and field mappings to new indices at creation. IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the get index template API.
Query parameters
-
h
string | array[string] List of columns to appear in the response. Supports simple wildcards.
-
s
string | array[string] List of columns that determine how the table should be sorted. Sorting defaults to ascending and can be changed by setting
:asc
or:desc
as a suffix to the column name. -
local
boolean If
true
, the request computes the list of selected nodes from the local cluster state. Iffalse
the list of selected nodes are computed from the cluster state of the master node. In both cases the coordinating node will send requests for further information to each selected node. -
master_timeout
string Period to wait for a connection to the master node.
curl \
--request GET http://api.example.com/_cat/templates \
--header "Authorization: $API_KEY"
[
{
"name": "string",
"index_patterns": "string",
"order": "string",
"version": "string",
"composed_of": "string"
}
]
name index_patterns order version composed_of
my-template-0 [te*] 500 []
my-template-1 [tea*] 501 []
my-template-2 [teak*] 502 7 []