mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[APM] Quick fix for ACM to ensure more than 10 items are displayed (#52262)
* [APM] Quick fix for ACM to ensure more than 10 items are displayed * Fix snapshot
This commit is contained in:
parent
fb4a6aa21a
commit
47dcf87e79
2 changed files with 3 additions and 1 deletions
|
@ -44,6 +44,7 @@ Object {
|
|||
exports[`agent configuration queries fetches configurations 1`] = `
|
||||
Object {
|
||||
"index": "myIndex",
|
||||
"size": 200,
|
||||
}
|
||||
`;
|
||||
|
||||
|
|
|
@ -15,7 +15,8 @@ export async function listConfigurations({ setup }: { setup: Setup }) {
|
|||
const { internalClient, indices } = setup;
|
||||
|
||||
const params = {
|
||||
index: indices.apmAgentConfigurationIndex
|
||||
index: indices.apmAgentConfigurationIndex,
|
||||
size: 200
|
||||
};
|
||||
|
||||
const resp = await internalClient.search<AgentConfiguration>(params);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue