更新 Watcher 索引设置
编辑更新 Watcher 索引设置编辑
此 API 允许用户修改 Watcher 内部索引 (.watches
) 的设置。只有部分设置可以修改。这包括
-
index.auto_expand_replicas
-
index.number_of_replicas
修改 Watcher 设置的示例
PUT /_watcher/watch/test_watch { "trigger": { "schedule": { "hourly": { "minute": [ 0, 5 ] } } }, "input": { "simple": { "payload": { "send": "yes" } } }, "condition": { "always": {} } }
response = client.watcher.update_settings( body: { 'index.auto_expand_replicas' => '0-4' } ) puts response
PUT /_watcher/settings { "index.auto_expand_replicas": "0-4" }
可以使用 获取 Watcher 索引设置 API 获取可配置的设置。