cat 组件模板 API
编辑cat 组件模板 API
编辑cat API 仅供使用命令行或 Kibana 控制台的人员使用。它们不适用于应用程序使用。对于应用程序使用,请使用获取组件模板 API。
返回集群中组件模板的信息。组件模板是构建索引模板的构建块,用于指定索引映射、设置和别名。
路径参数
编辑-
<template_name>
- (可选,字符串)要返回的组件模板的名称。接受通配符表达式。如果省略,则返回所有组件模板。
查询参数
编辑-
format
- (可选,字符串)HTTP accept 标头的简短版本。有效值包括 JSON、YAML 等。
-
h
- (可选,字符串)要显示的列名的逗号分隔列表。
-
help
- (可选,布尔值)如果为
true
,则响应包括帮助信息。默认为false
。 -
local
- (可选,布尔值)如果为
true
,则请求仅从本地节点检索信息。默认为false
,这意味着信息从主节点检索。 -
master_timeout
- (可选,时间单位)等待主节点的时间段。如果主节点在超时到期前不可用,则请求失败并返回错误。默认为
30s
。也可以设置为-1
,表示请求不应超时。 -
s
- (可选,字符串)用于对响应进行排序的列名或列别名的逗号分隔列表。
-
v
- (可选,布尔值)如果为
true
,则响应包括列标题。默认为false
。
示例
编辑resp = client.cat.component_templates( name="my-template-*", v=True, s="name", ) print(resp)
response = client.cat.component_templates( name: 'my-template-*', v: true, s: 'name' ) puts response
const response = await client.cat.componentTemplates({ name: "my-template-*", v: "true", s: "name", }); console.log(response);
GET _cat/component_templates/my-template-*?v=true&s=name
API 返回以下响应
name version alias_count mapping_count settings_count metadata_count included_in my-template-1 0 0 1 0 [my-index-template] my-template-2 0 3 0 0 [my-index-template]