ウォッチャーインデックス設定の取得
このAPIは、ユーザーが設定可能なウォッチャー内部インデックスの設定(.watches
)を取得することを可能にします。表示されるのは、ユーザーが設定可能なインデックス設定のサブセットのみです。これには以下が含まれます:
index.auto_expand_replicas
index.number_of_replicas
ウォッチャー設定を取得する例:
Python
resp = client.perform_request(
"GET",
"/_watcher/settings",
)
print(resp)
Ruby
response = client.watcher.get_settings
puts response
Js
const response = await client.transport.request({
method: "GET",
path: "/_watcher/settings",
});
console.log(response);
コンソール
GET /_watcher/settings
設定可能な設定は、ウォッチャーインデックス設定の更新 APIを使用して変更できます。