mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
This commit is contained in:
parent
d3f4401b4c
commit
9a943672ed
1 changed files with 8 additions and 2 deletions
|
@ -105,10 +105,13 @@ export const elasticsearchJsPlugin = (Client, config, components) => { // eslint
|
|||
method: 'POST'
|
||||
});
|
||||
|
||||
// Currently the endpoint uses a default size of 100 unless a size is supplied.
|
||||
// So until paging is supported in the UI, explicitly supply a size of 1000
|
||||
// to match the max number of docs that the endpoint can return.
|
||||
ml.getDataFrameTransforms = ca({
|
||||
urls: [
|
||||
{
|
||||
fmt: '/_data_frame/transforms',
|
||||
fmt: '/_data_frame/transforms/_all?size=1000',
|
||||
}
|
||||
],
|
||||
method: 'GET'
|
||||
|
@ -125,7 +128,10 @@ export const elasticsearchJsPlugin = (Client, config, components) => { // eslint
|
|||
}
|
||||
},
|
||||
{
|
||||
fmt: '/_data_frame/transforms/_stats',
|
||||
// Currently the endpoint uses a default size of 100 unless a size is supplied.
|
||||
// So until paging is supported in the UI, explicitly supply a size of 1000
|
||||
// to match the max number of docs that the endpoint can return.
|
||||
fmt: '/_data_frame/transforms/_all/_stats?size=1000',
|
||||
}
|
||||
],
|
||||
method: 'GET'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue