Move timeout to _msearch body in TSVB requests (#26510) (#26515)

This commit is contained in:
Peter Pisljar 2018-12-04 12:00:20 +01:00 committed by GitHub
parent 2b6a6a470b
commit 118081a6c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 12 deletions

View file

@ -39,13 +39,12 @@ export default async (req, panel) => {
bodies.push({
index: indexPattern,
ignore: [404],
timeout: '90s',
requestTimeout: 90000,
ignoreUnavailable: true,
});
bodies.push(buildAnnotationRequest(req, panel, annotation));
const body = buildAnnotationRequest(req, panel, annotation);
body.timeout = '90s';
bodies.push(body);
return bodies;
});

View file

@ -25,12 +25,11 @@ export default (req, panel, series) => {
bodies.push({
index: indexPattern,
ignore: [404],
timeout: '90s',
requestTimeout: 90000,
ignoreUnavailable: true,
});
bodies.push(buildRequestBody(req, panel, series));
const body = buildRequestBody(req, panel, series);
body.timeout = '90s';
bodies.push(body);
return bodies;
};

View file

@ -23,12 +23,11 @@ export default (req, panel, entities) => {
entities.forEach(entity => {
bodies.push({
index: panel.index_pattern,
ignore: [404],
timeout: '90s',
requestTimeout: 90000,
ignoreUnavailable: true,
});
bodies.push(buildRequestBody(req, panel, entity));
const body = buildRequestBody(req, panel, entity);
body.timeout = '90s';
bodies.push(body);
});
return bodies;
};