原英文版地址: https://www.elastic.co/guide/en/elasticsearch/reference/7.7/watcher-api-get-watch.html, 原文档版权归 www.elastic.co 所有
本地英文版地址: ../en/watcher-api-get-watch.html
本地英文版地址: ../en/watcher-api-get-watch.html
重要: 此版本不会发布额外的bug修复或文档更新。最新信息请参考 当前版本文档。
Get watch APIedit
Retrieves a watch by its ID.
Requestedit
GET _watcher/watch/<watch_id>
Prerequisitesedit
-
You must have
manage_watcher
ormonitor_watcher
cluster privileges to use this API. For more information, see Security privileges.
Path parametersedit
-
<watch_id>
- (Required, string) Identifier for the watch.
Examplesedit
The following example gets a watch with my-watch
id:
GET _watcher/watch/my_watch
Response:
{ "found": true, "_id": "my_watch", "_seq_no": 0, "_primary_term": 1, "_version": 1, "status": { "version": 1, "state": { "active": true, "timestamp": "2015-05-26T18:21:08.630Z" }, "actions": { "test_index": { "ack": { "timestamp": "2015-05-26T18:21:08.630Z", "state": "awaits_successful_execution" } } } }, "watch": { "input": { "simple": { "payload": { "send": "yes" } } }, "condition": { "always": {} }, "trigger": { "schedule": { "hourly": { "minute": [0, 5] } } }, "actions": { "test_index": { "index": { "index": "test" } } } } }