停止监视服务 API

编辑

如果 Watcher 服务正在运行,则停止该服务。

请求

编辑

POST _watcher/_stop

先决条件

编辑
  • 您必须具有 manage_watcher 集群权限才能使用此 API。有关更多信息,请参阅 安全权限

查询参数

编辑
master_timeout
(可选,时间单位)等待主节点的时长。如果主节点在超时到期之前不可用,则请求将失败并返回错误。默认为 30s。也可以设置为 -1 以指示请求永远不应超时。

示例

编辑
resp = client.watcher.stop()
print(resp)
response = client.watcher.stop
puts response
const response = await client.watcher.stop();
console.log(response);
POST _watcher/_stop

如果请求成功,Watcher 将返回以下响应

{
   "acknowledged": true
}