86 lines
4.1 KiB
Plaintext
86 lines
4.1 KiB
Plaintext
[[reference-ml-get_buckets]]
|
|
|
|
////////
|
|
===========================================================================================================================
|
|
|| ||
|
|
|| ||
|
|
|| ||
|
|
|| ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ ||
|
|
|| ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ ||
|
|
|| ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ ||
|
|
|| ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ ||
|
|
|| ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ ||
|
|
|| ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ ||
|
|
|| ||
|
|
|| ||
|
|
|| This file is autogenerated, DO NOT send pull requests that changes this file directly. ||
|
|
|| You should update the script that does the generation, which can be found in: ||
|
|
|| https://github.com/elastic/elastic-client-generator-js ||
|
|
|| ||
|
|
|| You can run the script with the following command: ||
|
|
|| npm run elasticsearch -- --version <version> ||
|
|
|| ||
|
|
|| ||
|
|
|| ||
|
|
===========================================================================================================================
|
|
////////
|
|
|
|
[discrete]
|
|
[[client.ml.getBuckets]]
|
|
=== client.ml.getBuckets
|
|
|
|
Get anomaly detection job results for buckets. The API presents a chronological view of the records, grouped by bucket.
|
|
|
|
{ref}/ml-get-bucket.html[{es} documentation]
|
|
|
|
[discrete]
|
|
==== Function signature
|
|
|
|
[source,ts]
|
|
----
|
|
(MlGetBucketsRequest, options?): Promise<MlGetBucketsResponse>
|
|
----
|
|
|
|
[discrete]
|
|
==== MlGetBucketsRequest
|
|
|
|
[pass]
|
|
++++
|
|
<pre>
|
|
++++
|
|
interface MlGetBucketsRequest extends <<RequestBase>> {
|
|
job_id: <<Id>>
|
|
timestamp?: <<DateTime>>
|
|
from?: <<integer>>
|
|
size?: <<integer>>
|
|
anomaly_score?: <<double>>
|
|
desc?: boolean
|
|
end?: <<DateTime>>
|
|
exclude_interim?: boolean
|
|
expand?: boolean
|
|
page?: MlPage
|
|
sort?: <<Field>>
|
|
start?: <<DateTime>>
|
|
}
|
|
|
|
[pass]
|
|
++++
|
|
</pre>
|
|
++++
|
|
[discrete]
|
|
==== MlGetBucketsResponse
|
|
|
|
[pass]
|
|
++++
|
|
<pre>
|
|
++++
|
|
interface MlGetBucketsResponse {
|
|
buckets: MlBucketSummary[]
|
|
count: <<long>>
|
|
}
|
|
|
|
[pass]
|
|
++++
|
|
</pre>
|
|
++++
|