mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[SecuritySolution] Make entity store description more generic (#209130)
## Summary Make entity store description more generic. Before: "Store host and user entities observed in events." "Monitor user and host risk scores, and track anomalies." After: "Store entities data observed in events." "Monitor entities' risk scores, and track anomalies."    ### Checklist Check the PR satisfies following conditions. Reviewers should verify this PR satisfies this list as well. - [x] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/src/platform/packages/shared/kbn-i18n/README.md) - [x] The PR description includes the appropriate Release Notes section, and the correct `release_note:*` label is applied per the [guidelines](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process) ### Identify risks Does this PR introduce any risks? For example, consider risks like hard to test bugs, performance regression, potential of data loss. Describe the risk, its severity, and mitigation for each identified risk. Invite stakeholders and evaluate how to proceed before merging. - [ ] [See some risk examples](https://github.com/elastic/kibana/blob/main/RISK_MATRIX.mdx) - [ ] ...
This commit is contained in:
parent
62977e7069
commit
78a596b05f
3 changed files with 4 additions and 4 deletions
|
@ -51,7 +51,7 @@ export const ENABLEMENT_DESCRIPTION_RISK_ENGINE_ONLY = i18n.translate(
|
|||
export const ENABLEMENT_DESCRIPTION_ENTITY_STORE_ONLY = i18n.translate(
|
||||
'xpack.securitySolution.entityAnalytics.entityStore.enablement.description.store',
|
||||
{
|
||||
defaultMessage: 'Store host and user entities observed in events.',
|
||||
defaultMessage: 'Store data for entities observed in events.',
|
||||
}
|
||||
);
|
||||
|
||||
|
|
|
@ -184,7 +184,7 @@ export const EntityStoreManagementPage = () => {
|
|||
<EuiText>
|
||||
<FormattedMessage
|
||||
id="xpack.securitySolution.entityAnalytics.entityStoreManagementPage.subTitle"
|
||||
defaultMessage="Store host and user entities observed in events."
|
||||
defaultMessage="Store data for entities observed in events."
|
||||
/>
|
||||
</EuiText>
|
||||
{isEntityStoreFeatureFlagDisabled && <EntityStoreFeatureFlagNotAvailableCallout />}
|
||||
|
|
|
@ -183,7 +183,7 @@ export const links: LinkItem = {
|
|||
id: SecurityPageName.entityAnalyticsManagement,
|
||||
title: ENTITY_ANALYTICS_RISK_SCORE,
|
||||
description: i18n.translate('xpack.securitySolution.appLinks.entityRiskScoringDescription', {
|
||||
defaultMessage: 'Monitor user and host risk scores, and track anomalies.',
|
||||
defaultMessage: "Monitor entities' risk scores, and track anomalies.",
|
||||
}),
|
||||
landingIcon: IconEntityAnalytics,
|
||||
path: ENTITY_ANALYTICS_MANAGEMENT_PATH,
|
||||
|
@ -197,7 +197,7 @@ export const links: LinkItem = {
|
|||
id: SecurityPageName.entityAnalyticsEntityStoreManagement,
|
||||
title: ENTITY_STORE,
|
||||
description: i18n.translate('xpack.securitySolution.appLinks.entityStoreDescription', {
|
||||
defaultMessage: 'Store host and user entities observed in events.',
|
||||
defaultMessage: 'Store data for entities observed in events.',
|
||||
}),
|
||||
landingIcon: IconAssetCriticality,
|
||||
path: ENTITY_ANALYTICS_ENTITY_STORE_MANAGEMENT_PATH,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue