mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[Cloud Posture] Trend query size fix (#132935)
This commit is contained in:
parent
b4496d8231
commit
f0c5898cce
1 changed files with 2 additions and 1 deletions
|
@ -27,7 +27,8 @@ export interface ScoreTrendDoc {
|
|||
|
||||
export const getTrendsQuery = () => ({
|
||||
index: BENCHMARK_SCORE_INDEX_DEFAULT_NS,
|
||||
size: 99,
|
||||
// large number that should be sufficient for 24 hours considering we write to the score index every 5 minutes
|
||||
size: 999,
|
||||
sort: '@timestamp:desc',
|
||||
query: {
|
||||
bool: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue