管理监视器
编辑管理监视器
编辑Watcher 提供了一组 API,您可以使用它们来管理您的监视器。
列出监视器
编辑目前没有专门的 API 用于列出存储的监视器。但是,由于 Watcher 将其监视器存储在 .watches
索引中,您可以通过在此索引上执行搜索来列出它们。
您只能在 .watches
索引上执行读取操作。您必须使用 Watcher API 来创建、更新和删除监视器。如果启用了 Elasticsearch 安全功能,我们建议您仅授予用户对 .watches
索引的 read
权限。
例如,以下内容返回前 100 个监视器:
resp = client.watcher.query_watches( size=100, ) print(resp)
const response = await client.watcher.queryWatches({ size: 100, }); console.log(response);
GET /_watcher/_query/watches { "size" : 100 }