2019-03-21 10:45:17 -04:00
|
|
|
[role="xpack"]
|
|
|
|
[testenv="basic"]
|
|
|
|
[[get-data-frame-transform-stats]]
|
|
|
|
=== Get {dataframe-transform} statistics API
|
2019-04-30 13:46:13 -04:00
|
|
|
|
|
|
|
[subs="attributes"]
|
2019-03-21 10:45:17 -04:00
|
|
|
++++
|
|
|
|
<titleabbrev>Get {dataframe-transform} statistics</titleabbrev>
|
|
|
|
++++
|
|
|
|
|
2019-06-12 13:13:04 -04:00
|
|
|
beta[]
|
|
|
|
|
2019-03-21 10:45:17 -04:00
|
|
|
Retrieves usage information for {dataframe-transforms}.
|
|
|
|
|
2019-06-26 16:46:21 -04:00
|
|
|
[discrete]
|
|
|
|
[[get-data-frame-transform-stats-request]]
|
|
|
|
==== {api-request-title}
|
2019-03-21 10:45:17 -04:00
|
|
|
|
|
|
|
|
|
|
|
`GET _data_frame/transforms/<data_frame_transform_id>/_stats`
|
|
|
|
|
|
|
|
`GET _data_frame/transforms/<data_frame_transform_id>,<data_frame_transform_id>/_stats` +
|
|
|
|
|
|
|
|
`GET _data_frame/transforms/_stats` +
|
|
|
|
|
|
|
|
`GET _data_frame/transforms/_all/_stats` +
|
|
|
|
|
|
|
|
`GET _data_frame/transforms/*/_stats` +
|
|
|
|
|
2019-06-26 16:46:21 -04:00
|
|
|
[discrete]
|
|
|
|
[[get-data-frame-transform-stats-prereqs]]
|
|
|
|
==== {api-prereq-title}
|
2019-03-21 10:45:17 -04:00
|
|
|
|
2019-06-27 18:16:24 -04:00
|
|
|
* If the {es} {security-features} are enabled, you must have
|
2019-06-26 16:46:21 -04:00
|
|
|
`monitor_data_frame_transforms` cluster privileges to use this API. The built-in
|
|
|
|
`data_frame_transforms_user` role has these privileges. For more information,
|
|
|
|
see {stack-ov}/security-privileges.html[Security privileges] and
|
|
|
|
{stack-ov}/built-in-roles.html[Built-in roles].
|
|
|
|
|
2019-06-27 18:16:24 -04:00
|
|
|
[discrete]
|
|
|
|
[[get-data-frame-transform-stats-desc]]
|
|
|
|
==== {api-description-title}
|
|
|
|
|
|
|
|
You can get statistics for multiple {dataframe-transforms} in a single API
|
|
|
|
request by using a comma-separated list of identifiers or a wildcard expression.
|
|
|
|
You can get statistics for all {dataframe-transforms} by using `_all`, by
|
|
|
|
specifying `*` as the `<data_frame_transform_id>`, or by omitting the
|
|
|
|
`<data_frame_transform_id>`.
|
2019-03-21 10:45:17 -04:00
|
|
|
|
2019-06-26 16:46:21 -04:00
|
|
|
[discrete]
|
|
|
|
[[get-data-frame-transform-stats-path-parms]]
|
|
|
|
==== {api-path-parms-title}
|
|
|
|
|
|
|
|
`<data_frame_transform_id>` (Optional)::
|
2019-03-21 10:45:17 -04:00
|
|
|
(string) Identifier for the {dataframe-transform}. It can be a
|
|
|
|
{dataframe-transform} identifier or a wildcard expression. If you do not
|
|
|
|
specify one of these options, the API returns information for all
|
|
|
|
{dataframe-transforms}.
|
2019-06-26 16:46:21 -04:00
|
|
|
|
|
|
|
[discrete]
|
|
|
|
[[get-data-frame-transform-stats-query-parms]]
|
|
|
|
==== {api-query-parms-title}
|
2019-03-21 10:45:17 -04:00
|
|
|
|
2019-06-26 16:46:21 -04:00
|
|
|
`allow_no_match` (Optional)::
|
2019-06-27 18:16:24 -04:00
|
|
|
(boolean) Specifies what to do when the request:
|
|
|
|
+
|
|
|
|
--
|
|
|
|
* Contains wildcard expressions and there are no {dataframe-transforms} 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 `transforms` 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-26 11:09:56 -04:00
|
|
|
|
2019-06-26 16:46:21 -04:00
|
|
|
`from` (Optional)::
|
2019-06-27 18:16:24 -04:00
|
|
|
(integer) Skips the specified number of {dataframe-transforms}. The
|
|
|
|
default value is `0`.
|
2019-06-14 11:42:18 -04:00
|
|
|
|
2019-06-26 16:46:21 -04:00
|
|
|
`size` (Optional)::
|
2019-06-27 18:16:24 -04:00
|
|
|
(integer) Specifies the maximum number of {dataframe-transforms} to obtain.
|
|
|
|
The default value is `100`.
|
2019-06-26 11:09:56 -04:00
|
|
|
|
2019-06-26 16:46:21 -04:00
|
|
|
[discrete]
|
|
|
|
[[get-data-frame-transform-stats-response]]
|
|
|
|
==== {api-response-body-title}
|
2019-03-21 10:45:17 -04:00
|
|
|
|
|
|
|
`transforms`::
|
2019-06-14 11:42:18 -04:00
|
|
|
(array) An array of statistics objects for {dataframe-transforms}, which are
|
|
|
|
sorted by the `id` value in ascending order.
|
2019-06-27 18:16:24 -04:00
|
|
|
|
|
|
|
[[get-data-frame-transform-stats-response-codes]]
|
|
|
|
==== {api-response-codes-title}
|
|
|
|
|
|
|
|
`404` (Missing resources)::
|
|
|
|
If `allow_no_match` is `false`, this code indicates that there are no
|
|
|
|
resources that match the request or only partial matches for the request.
|
2019-03-21 10:45:17 -04:00
|
|
|
|
2019-06-26 16:46:21 -04:00
|
|
|
[discrete]
|
|
|
|
[[get-data-frame-transform-stats-example]]
|
2019-03-21 10:45:17 -04:00
|
|
|
==== Examples
|
|
|
|
|
2019-06-14 11:42:18 -04:00
|
|
|
The following example skips for the first five {dataframe-transforms} and
|
|
|
|
gets usage information for a maximum of ten results:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
GET _data_frame/transforms/_stats?from=5&size=10
|
|
|
|
--------------------------------------------------
|
|
|
|
// CONSOLE
|
|
|
|
// TEST[skip:todo]
|
|
|
|
|
2019-03-21 10:45:17 -04:00
|
|
|
The following example gets usage information for the `ecommerce_transform`
|
|
|
|
{dataframe-transform}:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
GET _data_frame/transforms/ecommerce_transform/_stats
|
|
|
|
--------------------------------------------------
|
|
|
|
// CONSOLE
|
|
|
|
// TEST[skip:todo]
|
|
|
|
|
|
|
|
The API returns the following results:
|
|
|
|
[source,js]
|
|
|
|
----
|
|
|
|
{
|
|
|
|
"count" : 1,
|
|
|
|
"transforms" : [
|
|
|
|
{
|
|
|
|
"id" : "ecommerce_transform",
|
|
|
|
"state" : {
|
2019-05-16 10:10:23 -04:00
|
|
|
"task_state" : "started",
|
2019-03-27 07:53:58 -04:00
|
|
|
"indexer_state" : "started",
|
2019-05-16 10:10:23 -04:00
|
|
|
"checkpoint" : 1,
|
|
|
|
"progress" : {
|
|
|
|
"total_docs" : 1220,
|
|
|
|
"docs_remaining" : 0,
|
|
|
|
"percent_complete" : 100.0
|
|
|
|
}
|
2019-03-21 10:45:17 -04:00
|
|
|
},
|
|
|
|
"stats" : {
|
2019-05-16 10:10:23 -04:00
|
|
|
"pages_processed" : 2,
|
|
|
|
"documents_processed" : 1220,
|
|
|
|
"documents_indexed" : 13,
|
|
|
|
"trigger_count" : 1,
|
|
|
|
"index_time_in_ms" : 19,
|
|
|
|
"index_total" : 1,
|
2019-03-21 10:45:17 -04:00
|
|
|
"index_failures" : 0,
|
2019-05-16 10:10:23 -04:00
|
|
|
"search_time_in_ms" : 52,
|
|
|
|
"search_total" : 2,
|
2019-03-21 10:45:17 -04:00
|
|
|
"search_failures" : 0
|
2019-05-16 10:10:23 -04:00
|
|
|
},
|
|
|
|
"checkpointing" : {
|
|
|
|
"current" : {
|
|
|
|
"timestamp_millis" : 1557474786393
|
|
|
|
},
|
|
|
|
"operations_behind" : 0
|
2019-03-21 10:45:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
----
|
2019-05-16 10:10:23 -04:00
|
|
|
// TESTRESPONSE
|