diff --git a/CHANGELOG.md b/CHANGELOG.md index 80d1840569..84a9580c22 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 diff --git a/plugins/main/public/controllers/agent/components/agents-preview.js b/plugins/main/public/controllers/agent/components/agents-preview.js index b8ee210bb9..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'; @@ -344,7 +345,7 @@ export const AgentsPreview = compose( ) } titleSize='s' - description='Last registered agent' + description='Last enrolled agent' titleColor='primary' /> @@ -384,7 +385,16 @@ export const AgentsPreview = compose( ) } titleSize='s' - description='Most active agent' + description={ + <> + Most active agent{' '} + + + } titleColor='primary' />