From 44119cf34fcbbd12086a694cbc2cd06abe9bfb9d Mon Sep 17 00:00:00 2001 From: Abhishek Kumar Date: Fri, 28 Nov 2025 10:29:18 +0100 Subject: [PATCH] ui: fix dsiple managementservermetricsresponse - agentcount (#12148) Signed-off-by: Abhishek Kumar --- ui/src/config/section/infra/managementServers.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/config/section/infra/managementServers.js b/ui/src/config/section/infra/managementServers.js index bc7b42d9cf0..1466a440296 100644 --- a/ui/src/config/section/infra/managementServers.js +++ b/ui/src/config/section/infra/managementServers.js @@ -26,8 +26,8 @@ export default { permission: ['listManagementServersMetrics'], resourceType: 'ManagementServer', columns: () => { - const fields = ['name', 'state', 'ipaddress', 'version', 'osdistribution', 'agentcount'] - const metricsFields = ['collectiontime', 'availableprocessors', 'cpuload', 'heapmemoryused'] + const fields = ['name', 'state', 'ipaddress', 'version', 'osdistribution'] + const metricsFields = ['agentcount', 'collectiontime', 'availableprocessors', 'cpuload', 'heapmemoryused'] if (store.getters.metrics) { fields.push(...metricsFields) }