mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Move timeout to _msearch body in TSVB requests (#26510)
* fixing broken tsvb * removing `ignore: [404]`
This commit is contained in:
parent
a015f031fa
commit
4ddf9c84ab
3 changed files with 9 additions and 12 deletions
|
@ -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;
|
||||
});
|
||||
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue