2018-07-19 04:40:54 -04:00
|
|
|
[[java-rest-high-x-pack-watcher-put-watch]]
|
2018-07-31 04:29:22 -04:00
|
|
|
=== X-Pack Put Watch API
|
2018-07-13 12:33:27 -04:00
|
|
|
|
2018-07-19 04:40:54 -04:00
|
|
|
[[java-rest-high-x-pack-watcher-put-watch-execution]]
|
2018-07-13 12:33:27 -04:00
|
|
|
==== Execution
|
|
|
|
|
2018-07-19 04:40:54 -04:00
|
|
|
General information about the installed {watcher} features can be retrieved
|
|
|
|
using the `watcher()` method:
|
2018-07-13 12:33:27 -04:00
|
|
|
|
|
|
|
["source","java",subs="attributes,callouts,macros"]
|
|
|
|
--------------------------------------------------
|
2018-07-19 04:40:54 -04:00
|
|
|
include-tagged::{doc-tests}/WatcherDocumentationIT.java[x-pack-put-watch-execute]
|
2018-07-13 12:33:27 -04:00
|
|
|
--------------------------------------------------
|
2018-07-19 04:40:54 -04:00
|
|
|
<1> Allows to store the watch, but to not trigger it. Defaults to `true`
|
2018-07-13 12:33:27 -04:00
|
|
|
|
2018-07-19 04:40:54 -04:00
|
|
|
[[java-rest-high-x-pack-watcher-put-watch-response]]
|
2018-07-13 12:33:27 -04:00
|
|
|
==== Response
|
|
|
|
|
2018-07-31 04:29:22 -04:00
|
|
|
The returned `PutWatchResponse` contains `created`, `id`,
|
2018-07-19 04:40:54 -04:00
|
|
|
and `version` information.
|
2018-07-13 12:33:27 -04:00
|
|
|
|
|
|
|
["source","java",subs="attributes,callouts,macros"]
|
|
|
|
--------------------------------------------------
|
2018-07-19 04:40:54 -04:00
|
|
|
include-tagged::{doc-tests}/WatcherDocumentationIT.java[x-pack-put-watch-response]
|
2018-07-13 12:33:27 -04:00
|
|
|
--------------------------------------------------
|
2018-07-19 04:40:54 -04:00
|
|
|
<1> `_id` contains id of the watch
|
|
|
|
<2> `created` is a boolean indicating whether the watch was created for the first time
|
|
|
|
<3> `_version` returns the newly created version
|
2018-07-13 12:33:27 -04:00
|
|
|
|
2018-07-19 04:40:54 -04:00
|
|
|
[[java-rest-high-x-pack-watcher-put-watch-async]]
|
2018-07-13 12:33:27 -04:00
|
|
|
==== Asynchronous Execution
|
|
|
|
|
|
|
|
This request can be executed asynchronously:
|
|
|
|
|
|
|
|
["source","java",subs="attributes,callouts,macros"]
|
|
|
|
--------------------------------------------------
|
2018-07-19 04:40:54 -04:00
|
|
|
include-tagged::{doc-tests}/WatcherDocumentationIT.java[x-pack-put-watch-execute-async]
|
2018-07-13 12:33:27 -04:00
|
|
|
--------------------------------------------------
|
2018-07-31 04:29:22 -04:00
|
|
|
<1> The `PutWatchRequest` to execute and the `ActionListener` to use when
|
2018-07-13 12:33:27 -04:00
|
|
|
the execution completes
|
|
|
|
|
|
|
|
The asynchronous method does not block and returns immediately. Once it is
|
|
|
|
completed the `ActionListener` is called back using the `onResponse` method
|
|
|
|
if the execution successfully completed or using the `onFailure` method if
|
|
|
|
it failed.
|
|
|
|
|
2018-07-31 04:29:22 -04:00
|
|
|
A typical listener for `PutWatchResponse` looks like:
|
2018-07-13 12:33:27 -04:00
|
|
|
|
|
|
|
["source","java",subs="attributes,callouts,macros"]
|
|
|
|
--------------------------------------------------
|
2018-07-19 04:40:54 -04:00
|
|
|
include-tagged::{doc-tests}/WatcherDocumentationIT.java[x-pack-put-watch-execute-listener]
|
2018-07-13 12:33:27 -04:00
|
|
|
--------------------------------------------------
|
|
|
|
<1> Called when the execution is successfully completed. The response is
|
|
|
|
provided as an argument
|
|
|
|
<2> Called in case of failure. The raised exception is provided as an argument
|