From 89b8fa278fd1a3a47978f952f211f0f5f1857578 Mon Sep 17 00:00:00 2001 From: Ian Yenien Serrano Date: Tue, 23 Jan 2024 13:28:59 +0100 Subject: [PATCH 1/3] Change label "Last enrolled agent" --- .../main/public/controllers/agent/components/agents-preview.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/main/public/controllers/agent/components/agents-preview.js b/plugins/main/public/controllers/agent/components/agents-preview.js index b8ee210bb9..b824490184 100644 --- a/plugins/main/public/controllers/agent/components/agents-preview.js +++ b/plugins/main/public/controllers/agent/components/agents-preview.js @@ -344,7 +344,7 @@ export const AgentsPreview = compose( ) } titleSize='s' - description='Last registered agent' + description='Last enrolled agent' titleColor='primary' /> From 0f1de6c2b8197a4266ce022d48af0d7c909b7103 Mon Sep 17 00:00:00 2001 From: Ian Yenien Serrano Date: Tue, 23 Jan 2024 17:40:40 +0100 Subject: [PATCH 2/3] Add tooltip most active agent --- .../controllers/agent/components/agents-preview.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/plugins/main/public/controllers/agent/components/agents-preview.js b/plugins/main/public/controllers/agent/components/agents-preview.js index b824490184..a077afea2e 100644 --- a/plugins/main/public/controllers/agent/components/agents-preview.js +++ b/plugins/main/public/controllers/agent/components/agents-preview.js @@ -25,6 +25,7 @@ import { EuiLink, EuiProgress, EuiText, + EuiIconTip, } from '@elastic/eui'; import { AgentsTable } from './agents-table'; import { WzRequest } from '../../../react-services/wz-request'; @@ -384,7 +385,16 @@ export const AgentsPreview = compose( ) } titleSize='s' - description='Most active agent' + description={ + <> + Most active agent{' '} + + + } titleColor='primary' /> From def5e25d7b424369b3acc9d6b4a52d7784d9ee75 Mon Sep 17 00:00:00 2001 From: Ian Yenien Serrano Date: Tue, 23 Jan 2024 17:57:48 +0100 Subject: [PATCH 3/3] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 021a4a40d5..5f161a938e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ All notable changes to the Wazuh app project will be documented in this file. - Added an agent selector to the IT Hygiene application [#5840](https://github.com/wazuh/wazuh-dashboard-plugins/pull/5840) - Added query results limit when the search exceed 10000 hits [#6106](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6106) - Added a redirection button to Endpoint Summary from IT Hygiene application [6176](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6176) +- Added information icon with tooltip on the most active agent in the endpoint summary view [#6364](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6364) ### Changed