[[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 || || || || || || || =========================================================================================================================== //////// [discrete] === 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 ---- [discrete] ===== `MlGetBucketsRequest` [source,ts] ---- interface MlGetBucketsRequest extends <> { job_id: <> timestamp?: <> from?: <> size?: <> anomaly_score?: <> desc?: boolean end?: <> exclude_interim?: boolean expand?: boolean page?: MlPage sort?: <> start?: <> } ---- [discrete] ===== `MlGetBucketsResponse` [source,ts] ---- interface MlGetBucketsResponse { buckets: MlBucketSummary[] count: <> } ----