From 2ef34dd189b201f88783c5ec221e8b80fcbb3466 Mon Sep 17 00:00:00 2001 From: Nicolas Chaulet Date: Wed, 5 Jul 2023 07:37:40 -0400 Subject: [PATCH] [Fleet] Change default batch size --- .../fleet/sections/agents/agent_list_page/index.tsx | 12 ++++++++++++ .../setup/upgrade_agent_policy_schema_version.ts | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/index.tsx b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/index.tsx index 171ee38a62e51..cec075b4a8f7a 100644 --- a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/index.tsx +++ b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/index.tsx @@ -410,6 +410,7 @@ export const AgentListPage: React.FunctionComponent<{}> = () => { }; const isCurrentRequestIncremented = currentRequestRef?.current === 1; + return ( <> {isAgentActivityFlyoutOpen ? ( @@ -519,6 +520,17 @@ export const AgentListPage: React.FunctionComponent<{}> = () => { )} + {/* TODO serverless agent soft limit */} + {showUnhealthyCallout && ( + <> + {cloud?.deploymentUrl ? ( + + ) : ( + + )} + + + )} {/* Search and filter bar */}