获取 Watcher 索引设置

编辑

此 API 允许用户检索 Watcher 内部索引 (.watches) 的用户可配置设置。只会显示索引设置的一个子集,即那些用户可配置的设置。这包括:

  • index.auto_expand_replicas
  • index.number_of_replicas

以下是检索 Watcher 设置的示例:

resp = client.perform_request(
    "GET",
    "/_watcher/settings",
)
print(resp)
response = client.watcher.get_settings
puts response
const response = await client.transport.request({
  method: "GET",
  path: "/_watcher/settings",
});
console.log(response);
GET /_watcher/settings

可以使用更新 Watcher 索引设置 API 修改可配置的设置。