2018-10-05 11:45:46 -04:00
|
|
|
--
|
|
|
|
:api: start-datafeed
|
|
|
|
:request: StartDatafeedRequest
|
|
|
|
:response: StartDatafeedResponse
|
|
|
|
--
|
2019-09-10 11:26:56 -04:00
|
|
|
[role="xpack"]
|
2018-10-05 11:45:46 -04:00
|
|
|
[id="{upid}-{api}"]
|
2019-07-26 13:47:03 -04:00
|
|
|
=== Start datafeed API
|
2018-09-21 08:56:38 -04:00
|
|
|
|
2019-07-26 13:47:03 -04:00
|
|
|
Starts a {ml} datafeed in the cluster. It accepts a +{request}+ object and
|
|
|
|
responds with a +{response}+ object.
|
2018-09-21 08:56:38 -04:00
|
|
|
|
2018-10-05 11:45:46 -04:00
|
|
|
[id="{upid}-{api}-request"]
|
2019-07-26 13:47:03 -04:00
|
|
|
==== Start datafeed request
|
2018-09-21 08:56:38 -04:00
|
|
|
|
2018-10-05 11:45:46 -04:00
|
|
|
A +{request}+ object is created referencing a non-null `datafeedId`.
|
2018-09-21 08:56:38 -04:00
|
|
|
All other fields are optional for the request.
|
|
|
|
|
|
|
|
["source","java",subs="attributes,callouts,macros"]
|
|
|
|
--------------------------------------------------
|
2018-10-05 11:45:46 -04:00
|
|
|
include-tagged::{doc-tests-file}[{api}-request]
|
2018-09-21 08:56:38 -04:00
|
|
|
--------------------------------------------------
|
2019-07-26 13:47:03 -04:00
|
|
|
<1> Constructing a new request referencing an existing `datafeedId`.
|
2018-09-21 08:56:38 -04:00
|
|
|
|
2019-07-26 13:47:03 -04:00
|
|
|
==== Optional arguments
|
2018-09-21 08:56:38 -04:00
|
|
|
|
|
|
|
The following arguments are optional.
|
|
|
|
|
|
|
|
["source","java",subs="attributes,callouts,macros"]
|
|
|
|
--------------------------------------------------
|
2018-10-05 11:45:46 -04:00
|
|
|
include-tagged::{doc-tests-file}[{api}-request-options]
|
2018-09-21 08:56:38 -04:00
|
|
|
--------------------------------------------------
|
|
|
|
<1> Set when the datafeed should end, the value is exclusive.
|
|
|
|
May be an epoch seconds, epoch millis or an ISO 8601 string.
|
|
|
|
"now" is a special value that indicates the current time.
|
|
|
|
If you do not specify an end time, the datafeed runs continuously.
|
|
|
|
<2> Set when the datafeed should start, the value is inclusive.
|
|
|
|
May be an epoch seconds, epoch millis or an ISO 8601 string.
|
|
|
|
If you do not specify a start time and the datafeed is associated with a new job,
|
|
|
|
the analysis starts from the earliest time for which data is available.
|
|
|
|
<3> Set the timeout for the request
|
|
|
|
|
2018-10-05 11:45:46 -04:00
|
|
|
include::../execution.asciidoc[]
|