2017-06-19 21:23:58 -04:00
|
|
|
[role="xpack"]
|
2018-08-31 19:49:24 -04:00
|
|
|
[testenv="platinum"]
|
2017-04-04 18:26:39 -04:00
|
|
|
[[ml-update-datafeed]]
|
2018-12-20 13:23:28 -05:00
|
|
|
=== Update {dfeeds} API
|
2019-04-30 13:46:13 -04:00
|
|
|
|
|
|
|
[subs="attributes"]
|
2017-12-14 13:52:49 -05:00
|
|
|
++++
|
2018-12-20 13:23:28 -05:00
|
|
|
<titleabbrev>Update {dfeeds}</titleabbrev>
|
2017-12-14 13:52:49 -05:00
|
|
|
++++
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2018-06-13 16:37:35 -04:00
|
|
|
Updates certain properties of a {dfeed}.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2019-06-27 12:42:47 -04:00
|
|
|
[[ml-update-datafeed-request]]
|
|
|
|
==== {api-request-title}
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2018-12-07 15:34:11 -05:00
|
|
|
`POST _ml/datafeeds/<feed_id>/_update`
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2019-06-27 12:42:47 -04:00
|
|
|
[[ml-update-datafeed-desc]]
|
|
|
|
==== {api-description-title}
|
2019-05-28 11:36:30 -04:00
|
|
|
|
|
|
|
NOTE: If you update the `delayed_data_check_config` property, you must stop and
|
|
|
|
start the {dfeed} for the change to be applied.
|
2017-04-18 18:13:21 -04:00
|
|
|
|
2019-06-27 12:42:47 -04:00
|
|
|
[[ml-update-datafeed-path-parms]]
|
|
|
|
==== {api-path-parms-title}
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
`feed_id` (required)::
|
2017-05-02 15:45:42 -04:00
|
|
|
(string) Identifier for the {dfeed}
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2019-06-27 12:42:47 -04:00
|
|
|
[[ml-update-datafeed-request-body]]
|
|
|
|
==== {api-request-body-title}
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-05-02 15:45:42 -04:00
|
|
|
The following properties can be updated after the {dfeed} is created:
|
2017-04-10 11:59:27 -04:00
|
|
|
|
2017-04-11 21:52:47 -04:00
|
|
|
`aggregations`::
|
2017-05-02 15:45:42 -04:00
|
|
|
(object) If set, the {dfeed} performs aggregation searches.
|
2017-04-26 14:18:51 -04:00
|
|
|
For more information, see <<ml-datafeed-resource>>.
|
2017-04-11 21:52:47 -04:00
|
|
|
|
|
|
|
`chunking_config`::
|
2017-04-27 14:17:06 -04:00
|
|
|
(object) Specifies how data searches are split into time chunks.
|
|
|
|
See <<ml-datafeed-chunking-config>>.
|
2019-05-28 11:36:30 -04:00
|
|
|
|
|
|
|
`delayed_data_check_config`::
|
|
|
|
(object) Specifies whether the data feed checks for missing data and
|
|
|
|
the size of the window. See <<ml-datafeed-delayed-data-check-config>>.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-11 21:52:47 -04:00
|
|
|
`frequency`::
|
2017-05-02 15:45:42 -04:00
|
|
|
(time units) The interval at which scheduled queries are made while the
|
|
|
|
{dfeed} runs in real time. The default value is either the bucket span for short
|
2017-04-26 14:18:51 -04:00
|
|
|
bucket spans, or, for longer bucket spans, a sensible fraction of the bucket
|
2017-05-15 12:30:30 -04:00
|
|
|
span. For example: `150s`.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-05-04 06:37:12 -04:00
|
|
|
`indices`::
|
2017-05-03 12:07:44 -04:00
|
|
|
(array) An array of index names. Wildcards are supported. For example:
|
2017-05-15 12:30:30 -04:00
|
|
|
`["it_ops_metrics", "server*"]`.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-11 21:52:47 -04:00
|
|
|
`job_id`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) A numerical character string that uniquely identifies the job.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-11 21:52:47 -04:00
|
|
|
`query`::
|
2017-04-27 14:17:06 -04:00
|
|
|
(object) The {es} query domain-specific language (DSL). This value
|
|
|
|
corresponds to the query object in an {es} search POST body. All the
|
|
|
|
options that are supported by {es} can be used, as this object is
|
|
|
|
passed verbatim to {es}. By default, this property has the following
|
|
|
|
value: `{"match_all": {"boost": 1}}`.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-11 21:52:47 -04:00
|
|
|
`query_delay`::
|
2017-04-26 14:18:51 -04:00
|
|
|
(time units) The number of seconds behind real-time that data is queried. For
|
2017-04-27 14:17:06 -04:00
|
|
|
example, if data from 10:04 a.m. might not be searchable in {es} until
|
|
|
|
10:06 a.m., set this property to 120 seconds. The default value is `60s`.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-05-15 12:30:30 -04:00
|
|
|
`script_fields`::
|
|
|
|
(object) Specifies scripts that evaluate custom expressions and returns
|
|
|
|
script fields to the {dfeed}.
|
|
|
|
The <<ml-detectorconfig,detector configuration objects>> in a job can contain
|
|
|
|
functions that use these script fields.
|
|
|
|
For more information,
|
|
|
|
see {ref}/search-request-script-fields.html[Script Fields].
|
|
|
|
|
2017-04-11 21:52:47 -04:00
|
|
|
`scroll_size`::
|
2017-04-27 14:17:06 -04:00
|
|
|
(unsigned integer) The `size` parameter that is used in {es} searches.
|
2017-04-26 14:18:51 -04:00
|
|
|
The default value is `1000`.
|
2017-04-10 11:59:27 -04:00
|
|
|
|
|
|
|
For more information about these properties,
|
2017-05-02 15:45:42 -04:00
|
|
|
see <<ml-datafeed-resource>>.
|
2017-04-10 11:59:27 -04:00
|
|
|
|
2019-06-27 12:42:47 -04:00
|
|
|
[[ml-update-datafeed-prereqs]]
|
|
|
|
==== {api-prereq-title}
|
2017-04-25 17:08:29 -04:00
|
|
|
|
2018-12-19 17:53:37 -05:00
|
|
|
If {es} {security-features} are enabled, you must have `manage_ml`, or `manage`
|
|
|
|
cluster privileges to use this API. For more information, see
|
2019-06-27 12:42:47 -04:00
|
|
|
{stack-ov}/security-privileges.html[Security privileges].
|
2017-12-15 09:41:10 -05:00
|
|
|
|
2019-06-27 12:42:47 -04:00
|
|
|
[[ml-update-datafeed-security]]
|
2017-12-15 09:41:10 -05:00
|
|
|
==== Security Integration
|
|
|
|
|
2018-12-19 17:53:37 -05:00
|
|
|
When {es} {security-features} are enabled, your {dfeed} remembers which roles the
|
|
|
|
user who updated it had at the time of update and runs the query using those
|
|
|
|
same roles.
|
2017-12-15 09:41:10 -05:00
|
|
|
|
2019-06-27 12:42:47 -04:00
|
|
|
[[ml-update-datafeed-example]]
|
|
|
|
==== {api-examples-title}
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2018-02-20 14:08:37 -05:00
|
|
|
The following example updates the query for the `datafeed-total-requests`
|
|
|
|
{dfeed} so that only log entries of error level are analyzed:
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2018-12-07 15:34:11 -05:00
|
|
|
POST _ml/datafeeds/datafeed-total-requests/_update
|
2017-04-04 18:26:39 -04:00
|
|
|
{
|
2017-05-03 11:38:31 -04:00
|
|
|
"query": {
|
|
|
|
"term": {
|
|
|
|
"level": "error"
|
|
|
|
}
|
2017-04-11 21:52:47 -04:00
|
|
|
}
|
2017-04-04 18:26:39 -04:00
|
|
|
}
|
|
|
|
--------------------------------------------------
|
|
|
|
// CONSOLE
|
2018-08-31 19:49:24 -04:00
|
|
|
// TEST[skip:setup:server_metrics_datafeed]
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-05-03 12:07:44 -04:00
|
|
|
When the {dfeed} is updated, you receive the full {dfeed} configuration with
|
2017-05-03 11:38:31 -04:00
|
|
|
with the updated values:
|
2017-05-03 12:07:44 -04:00
|
|
|
|
2017-04-21 11:23:27 -04:00
|
|
|
[source,js]
|
2017-04-04 18:26:39 -04:00
|
|
|
----
|
|
|
|
{
|
2018-02-20 14:08:37 -05:00
|
|
|
"datafeed_id": "datafeed-total-requests",
|
|
|
|
"job_id": "total-requests",
|
|
|
|
"query_delay": "83474ms",
|
|
|
|
"indices": ["server-metrics"],
|
2017-05-03 11:38:31 -04:00
|
|
|
"query": {
|
|
|
|
"term": {
|
|
|
|
"level": {
|
|
|
|
"value": "error",
|
2018-02-20 14:08:37 -05:00
|
|
|
"boost": 1.0
|
2017-04-10 11:59:27 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2017-04-11 21:52:47 -04:00
|
|
|
"scroll_size": 1000,
|
|
|
|
"chunking_config": {
|
2017-05-03 11:38:31 -04:00
|
|
|
"mode": "auto"
|
2017-04-11 21:52:47 -04:00
|
|
|
}
|
2017-04-04 18:26:39 -04:00
|
|
|
}
|
|
|
|
----
|
2018-02-20 14:08:37 -05:00
|
|
|
// TESTRESPONSE[s/"query.boost": "1.0"/"query.boost": $body.query.boost/]
|