获取自动跟踪模式 API
编辑获取自动跟踪模式 API
编辑获取跨集群复制的自动跟踪模式。
请求
编辑resp = client.ccr.get_auto_follow_pattern() print(resp)
response = client.ccr.get_auto_follow_pattern puts response
const response = await client.ccr.getAutoFollowPattern(); console.log(response);
GET /_ccr/auto_follow/
resp = client.ccr.get_auto_follow_pattern( name="<auto_follow_pattern_name>", ) print(resp)
const response = await client.ccr.getAutoFollowPattern({ name: "<auto_follow_pattern_name>", }); console.log(response);
GET /_ccr/auto_follow/<auto_follow_pattern_name>
路径参数
编辑-
<auto_follow_pattern_name>
- (可选,字符串)指定要检索的自动跟踪模式集合。 如果你没有指定名称,则 API 将返回所有集合的信息。
示例
编辑此示例检索有关名为 my_auto_follow_pattern
的自动跟踪模式集合的信息
resp = client.ccr.get_auto_follow_pattern( name="my_auto_follow_pattern", ) print(resp)
response = client.ccr.get_auto_follow_pattern( name: 'my_auto_follow_pattern' ) puts response
const response = await client.ccr.getAutoFollowPattern({ name: "my_auto_follow_pattern", }); console.log(response);
GET /_ccr/auto_follow/my_auto_follow_pattern
API 返回以下结果
{ "patterns": [ { "name": "my_auto_follow_pattern", "pattern": { "active": true, "remote_cluster" : "remote_cluster", "leader_index_patterns" : [ "leader_index*" ], "leader_index_exclusion_patterns": [ "leader_index_001" ], "follow_index_pattern" : "{{leader_index}}-follower" } } ] }