mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[Security] Report accurate endpoint count (#83092)
This commit is contained in:
parent
7fdd0a1b81
commit
7e24ae6e70
2 changed files with 7 additions and 0 deletions
|
@ -37,6 +37,7 @@ describe('query builder', () => {
|
|||
},
|
||||
},
|
||||
],
|
||||
track_total_hits: true,
|
||||
},
|
||||
from: 0,
|
||||
size: 10,
|
||||
|
@ -84,6 +85,7 @@ describe('query builder', () => {
|
|||
},
|
||||
},
|
||||
],
|
||||
track_total_hits: true,
|
||||
},
|
||||
from: 0,
|
||||
size: 10,
|
||||
|
@ -142,6 +144,7 @@ describe('query builder', () => {
|
|||
},
|
||||
},
|
||||
],
|
||||
track_total_hits: true,
|
||||
},
|
||||
from: 0,
|
||||
size: 10,
|
||||
|
@ -213,6 +216,7 @@ describe('query builder', () => {
|
|||
},
|
||||
},
|
||||
],
|
||||
track_total_hits: true,
|
||||
},
|
||||
from: 0,
|
||||
size: 10,
|
||||
|
|
|
@ -86,6 +86,9 @@ export function metadataQueryStrategyV2(): MetadataQueryStrategy {
|
|||
},
|
||||
},
|
||||
],
|
||||
extraBodyProperties: {
|
||||
track_total_hits: true,
|
||||
},
|
||||
queryResponseToHostListResult: (
|
||||
searchResponse: SearchResponse<HostMetadata | HostMetadataDetails>
|
||||
): HostListQueryResult => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue