2019-09-10 13:32:51 -04:00
|
|
|
[role="xpack"]
|
2017-03-28 17:23:01 -04:00
|
|
|
[[input]]
|
|
|
|
== Inputs
|
|
|
|
|
|
|
|
When a watch is triggered, its _input_ loads data into the execution
|
|
|
|
context. This payload is accessible during the subsequent watch execution
|
|
|
|
phases. For example, you can base a watch's condition on the data loaded by its
|
|
|
|
input.
|
|
|
|
|
|
|
|
{watcher} supports four input types:
|
|
|
|
|
2019-09-30 13:18:50 -04:00
|
|
|
* <<input-simple,`simple`>>: load static data into the execution context.
|
|
|
|
* <<input-search,`search`>>: load the results of a search into the execution
|
2017-03-28 17:23:01 -04:00
|
|
|
context.
|
2019-09-30 13:18:50 -04:00
|
|
|
* <<input-http,`http`>>: load the results of an HTTP request into the execution
|
2017-03-28 17:23:01 -04:00
|
|
|
context.
|
2019-09-30 13:18:50 -04:00
|
|
|
* <<input-chain,`chain`>>: use a series of inputs to load data into the
|
2017-03-28 17:23:01 -04:00
|
|
|
execution context.
|
|
|
|
|
|
|
|
NOTE: If you don't define an input for a watch, an empty payload is loaded
|
|
|
|
into the execution context.
|
|
|
|
|
|
|
|
include::input/simple.asciidoc[]
|
|
|
|
|
|
|
|
include::input/search.asciidoc[]
|
|
|
|
|
|
|
|
include::input/http.asciidoc[]
|
|
|
|
|
|
|
|
include::input/chain.asciidoc[]
|