Update deeplinks and network links to add Network evetns to global nav search (#138412)

Co-authored-by: Kristof-Pierre Cummings <kristofpierre.cummings@elastic.co>
This commit is contained in:
Kristof C 2022-08-09 14:48:33 -05:00 committed by GitHub
parent 24ababf408
commit c8e18f77b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View file

@ -326,12 +326,19 @@ export const securitySolutionsDeepLinks: SecuritySolutionDeepLink[] = [
},
{
id: SecurityPageName.networkAnomalies,
title: i18n.translate('xpack.securitySolution.search.hosts.anomalies', {
title: i18n.translate('xpack.securitySolution.search.network.anomalies', {
defaultMessage: 'Anomalies',
}),
path: `${NETWORK_PATH}/anomalies`,
isPremium: true,
},
{
id: SecurityPageName.networkEvents,
title: i18n.translate('xpack.securitySolution.search.network.events', {
defaultMessage: 'Events',
}),
path: `${NETWORK_PATH}/events`,
},
],
},
{

View file

@ -55,5 +55,12 @@ export const links: LinkItem = {
path: `${NETWORK_PATH}/anomalies`,
licenseType: 'gold',
},
{
id: SecurityPageName.networkEvents,
title: i18n.translate('xpack.securitySolution.appLinks.network.events', {
defaultMessage: 'Events',
}),
path: `${NETWORK_PATH}/events`,
},
],
};