Summary
This issue is for redirecting the direct navigation links for "Rules" from the Stack Management section of the UI to the new unified rules page at app/rules.
Context
As Kibana continues to evolve, the Stack Management Rules page is being replaced by a first-class rules experience outside of Stack Management. Redirecting the existing link is one step in the overall migration of the rules experience.
The current primary navigation links are defined in the createStackManagementNavigationTree function within x-pack/solutions/security/plugins/observability/public/navigation/stack_management_navigation.ts (and other navigation trees). Specifically, the management:triggersActions link needs to be updated.
By redirecting these links, we can guide users towards the new unified experience while maintaining familiar navigation paths.
Action Items
- Modify the navigation structure to update the destination of the
management:triggersActions link. This change should be applied to:
- Stateful and Serverless deployments.
- Observability, Security, and Search serverless projects,
- Classic and Solution views.
- The
createNavTree function in x-pack/solutions/observability/plugins/observability/public/navigation_tree.ts is a likely place to start, but other navigation definitions may also need to be updated.
- Verify that the "Rules" link in the Stack Management navigation menu now navigates to
app/rules.
- Perform a cursory check for any other obvious links to the legacy page in the navigation tree and update them as well.
Out of Scope
- Changing any redirect logic throughout the Kibana app (including logic in Saved Object Management page.) Any existing redirects will be left as is. This ticket is only concerned with the main navigation links.
Summary
This issue is for redirecting the direct navigation links for "Rules" from the Stack Management section of the UI to the new unified rules page at
app/rules.Context
As Kibana continues to evolve, the Stack Management Rules page is being replaced by a first-class rules experience outside of Stack Management. Redirecting the existing link is one step in the overall migration of the rules experience.
The current primary navigation links are defined in the
createStackManagementNavigationTreefunction withinx-pack/solutions/security/plugins/observability/public/navigation/stack_management_navigation.ts(and other navigation trees). Specifically, themanagement:triggersActionslink needs to be updated.By redirecting these links, we can guide users towards the new unified experience while maintaining familiar navigation paths.
Action Items
management:triggersActionslink. This change should be applied to:createNavTreefunction inx-pack/solutions/observability/plugins/observability/public/navigation_tree.tsis a likely place to start, but other navigation definitions may also need to be updated.app/rules.Out of Scope