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-get-datafeed]]
|
2018-12-20 13:23:28 -05:00
|
|
|
=== Get {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>Get {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
|
|
|
Retrieves configuration information for {dfeeds}.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2019-06-27 12:42:47 -04:00
|
|
|
[[ml-get-datafeed-request]]
|
|
|
|
==== {api-request-title}
|
2017-08-09 11:30:21 -04:00
|
|
|
|
2018-12-07 15:34:11 -05:00
|
|
|
`GET _ml/datafeeds/<feed_id>` +
|
2017-08-09 11:30:21 -04:00
|
|
|
|
2018-12-07 15:34:11 -05:00
|
|
|
`GET _ml/datafeeds/<feed_id>,<feed_id>` +
|
2017-08-09 11:30:21 -04:00
|
|
|
|
2018-12-07 15:34:11 -05:00
|
|
|
`GET _ml/datafeeds/` +
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2019-06-27 16:58:42 -04:00
|
|
|
`GET _ml/datafeeds/_all`
|
|
|
|
|
|
|
|
[[ml-get-datafeed-prereqs]]
|
|
|
|
==== {api-prereq-title}
|
|
|
|
|
|
|
|
* If the {es} {security-features} are enabled, you must have `monitor_ml`,
|
|
|
|
`monitor`, `manage_ml`, or `manage` cluster privileges to use this API. See
|
|
|
|
{stack-ov}/security-privileges.html[Security privileges].
|
2017-08-09 11:30:21 -04:00
|
|
|
|
2019-06-27 12:42:47 -04:00
|
|
|
[[ml-get-datafeed-desc]]
|
|
|
|
==== {api-description-title}
|
2017-04-18 18:13:21 -04:00
|
|
|
|
2017-08-09 11:30:21 -04:00
|
|
|
You can get information for multiple {dfeeds} in a single API request by using a
|
|
|
|
comma-separated list of {dfeeds} or a wildcard expression. You can get
|
|
|
|
information for all {dfeeds} by using `_all`, by specifying `*` as the
|
|
|
|
`<feed_id>`, or by omitting the `<feed_id>`.
|
2017-04-18 18:13:21 -04:00
|
|
|
|
2019-01-17 13:47:15 -05:00
|
|
|
IMPORTANT: This API returns a maximum of 10,000 {dfeeds}.
|
|
|
|
|
2019-06-27 12:42:47 -04:00
|
|
|
[[ml-get-datafeed-path-parms]]
|
|
|
|
==== {api-path-parms-title}
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2019-07-12 11:26:31 -04:00
|
|
|
`<feed_id>`::
|
|
|
|
(Optional, string) Identifier for the {dfeed}. It can be a {dfeed} identifier
|
|
|
|
or a wildcard expression. If you do not specify one of these options, the API
|
2017-08-09 11:30:21 -04:00
|
|
|
returns information about all {dfeeds}.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2019-07-25 10:45:06 -04:00
|
|
|
[[ml-get-datafeed-query-parms]]
|
|
|
|
==== {api-query-parms-title}
|
|
|
|
|
|
|
|
`allow_no_datafeeds`::
|
|
|
|
(Optional, boolean) Specifies what to do when the request:
|
|
|
|
+
|
|
|
|
--
|
|
|
|
* Contains wildcard expressions and there are no {datafeeds} that match.
|
|
|
|
* Contains the `_all` string or no identifiers and there are no matches.
|
|
|
|
* Contains wildcard expressions and there are only partial matches.
|
|
|
|
|
|
|
|
The default value is `true`, which returns an empty `datafeeds` array when
|
|
|
|
there are no matches and the subset of results when there are partial matches.
|
|
|
|
If this parameter is `false`, the request returns a `404` status code when there
|
|
|
|
are no matches or only partial matches.
|
|
|
|
--
|
|
|
|
|
2019-06-27 12:42:47 -04:00
|
|
|
[[ml-get-datafeed-results]]
|
|
|
|
==== {api-response-body-title}
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-11 21:52:47 -04:00
|
|
|
The API returns the following information:
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-11 21:52:47 -04:00
|
|
|
`datafeeds`::
|
2017-05-02 15:45:42 -04:00
|
|
|
(array) An array of {dfeed} objects.
|
|
|
|
For more information, see <<ml-datafeed-resource>>.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2019-07-25 10:45:06 -04:00
|
|
|
[[ml-get-datafeed-response-codes]]
|
|
|
|
==== {api-response-codes-title}
|
|
|
|
|
|
|
|
`404` (Missing resources)::
|
|
|
|
If `allow_no_datafeeds` is `false`, this code indicates that there are no
|
|
|
|
resources that match the request or only partial matches for the request.
|
|
|
|
|
2019-06-27 12:42:47 -04:00
|
|
|
[[ml-get-datafeed-example]]
|
|
|
|
==== {api-examples-title}
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-11 21:52:47 -04:00
|
|
|
The following example gets configuration information for the
|
2018-02-20 14:08:37 -05:00
|
|
|
`datafeed-total-requests` {dfeed}:
|
2017-04-11 21:52:47 -04:00
|
|
|
|
2019-09-06 11:31:13 -04:00
|
|
|
[source,console]
|
2017-04-11 21:52:47 -04:00
|
|
|
--------------------------------------------------
|
2018-12-07 15:34:11 -05:00
|
|
|
GET _ml/datafeeds/datafeed-total-requests
|
2017-04-11 21:52:47 -04:00
|
|
|
--------------------------------------------------
|
2018-08-31 19:49:24 -04:00
|
|
|
// TEST[skip:setup:server_metrics_datafeed]
|
2017-04-11 21:52:47 -04:00
|
|
|
|
|
|
|
The API returns the following results:
|
2019-09-06 16:09:09 -04:00
|
|
|
|
|
|
|
[source,console-result]
|
2017-04-04 18:26:39 -04:00
|
|
|
----
|
|
|
|
{
|
|
|
|
"count": 1,
|
|
|
|
"datafeeds": [
|
|
|
|
{
|
2018-02-20 14:08:37 -05:00
|
|
|
"datafeed_id": "datafeed-total-requests",
|
|
|
|
"job_id": "total-requests",
|
|
|
|
"query_delay": "83474ms",
|
2017-08-10 11:22:59 -04:00
|
|
|
"indices": [
|
2018-02-20 14:08:37 -05:00
|
|
|
"server-metrics"
|
2017-04-04 18:26:39 -04:00
|
|
|
],
|
|
|
|
"query": {
|
|
|
|
"match_all": {
|
2018-02-20 14:08:37 -05:00
|
|
|
"boost": 1.0
|
2017-04-04 18:26:39 -04:00
|
|
|
}
|
|
|
|
},
|
2017-04-11 21:52:47 -04:00
|
|
|
"scroll_size": 1000,
|
|
|
|
"chunking_config": {
|
2017-08-10 11:22:59 -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/]
|