[8.x] [Navigation] Add stack monitoring to Elasticsearch sidebar (#210139) (#211139)

# Backport

This will backport the following commits from `main` to `8.x`:
- [[Navigation] Add stack monitoring to Elasticsearch sidebar
(#210139)](https://github.com/elastic/kibana/pull/210139)

<!--- Backport version: 9.4.3 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sqren/backport)

<!--BACKPORT [{"author":{"name":"Krzysztof
Kowalczyk","email":"krzysztof.kowalczyk@elastic.co"},"sourceCommit":{"committedDate":"2025-02-10T16:22:49Z","message":"[Navigation]
Add stack monitoring to Elasticsearch sidebar (#210139)\n\n##
Summary\r\n\r\nThis PR adds `Stack Monitoring` to the side navigation.
\r\nAddresses:
https://github.com/elastic/kibana-team/issues/1312\r\n\r\n![Screenshot
2025-02-07 at 09
34\r\n35](https://github.com/user-attachments/assets/26e8e95b-210c-4086-ae18-3847d0b93d0e)","sha":"9dc67bfd8836e8d3a2f0480d997b11d9e7e9106f","branchLabelMapping":{"^v9.1.0$":"main","^v8.19.0$":"8.x","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["enhancement","release_note:skip","v9.0.0","Team:Search","backport:version","v8.18.0","v9.1.0","v8.19.0"],"title":"[Navigation]
Add stack monitoring to Elasticsearch
sidebar","number":210139,"url":"https://github.com/elastic/kibana/pull/210139","mergeCommit":{"message":"[Navigation]
Add stack monitoring to Elasticsearch sidebar (#210139)\n\n##
Summary\r\n\r\nThis PR adds `Stack Monitoring` to the side navigation.
\r\nAddresses:
https://github.com/elastic/kibana-team/issues/1312\r\n\r\n![Screenshot
2025-02-07 at 09
34\r\n35](https://github.com/user-attachments/assets/26e8e95b-210c-4086-ae18-3847d0b93d0e)","sha":"9dc67bfd8836e8d3a2f0480d997b11d9e7e9106f"}},"sourceBranch":"main","suggestedTargetBranches":["9.0","8.18","8.x"],"targetPullRequestStates":[{"branch":"9.0","label":"v9.0.0","branchLabelMappingKey":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"8.18","label":"v8.18.0","branchLabelMappingKey":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"main","label":"v9.1.0","branchLabelMappingKey":"^v9.1.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/210139","number":210139,"mergeCommit":{"message":"[Navigation]
Add stack monitoring to Elasticsearch sidebar (#210139)\n\n##
Summary\r\n\r\nThis PR adds `Stack Monitoring` to the side navigation.
\r\nAddresses:
https://github.com/elastic/kibana-team/issues/1312\r\n\r\n![Screenshot
2025-02-07 at 09
34\r\n35](https://github.com/user-attachments/assets/26e8e95b-210c-4086-ae18-3847d0b93d0e)","sha":"9dc67bfd8836e8d3a2f0480d997b11d9e7e9106f"}},{"branch":"8.x","label":"v8.19.0","branchLabelMappingKey":"^v8.19.0$","isSourceBranch":false,"state":"NOT_CREATED"}]}]
BACKPORT-->

Co-authored-by: Krzysztof Kowalczyk <krzysztof.kowalczyk@elastic.co>
This commit is contained in:
Kibana Machine 2025-02-14 13:14:11 +11:00 committed by GitHub
parent 826bb834c9
commit bcbc1bd02b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View file

@ -364,6 +364,10 @@ export const getNavigationTreeDefinition = ({
defaultMessage: 'Stack Management',
}),
},
{
id: 'monitoring',
link: 'monitoring',
},
],
icon: 'gear',
id: 'project_settings_project_nav',

View file

@ -308,6 +308,7 @@ export default function searchSolutionNavigation({
'project_settings_project_nav',
'ml:modelManagement',
'stack_management',
'monitoring',
]);
});
});