-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[APM] Persist local UI filters across views #43266
Comments
Pinging @elastic/apm-ui |
Could this be solve by adding local filters to the list of kibana/x-pack/legacy/plugins/apm/public/components/shared/Links/apm/APMLink.tsx Lines 21 to 29 in 4a1f41e
Or perhaps even better: overhauling our links and explicitly pass the params that should be carried over? kibana/x-pack/legacy/plugins/apm/public/components/shared/HistoryTabs/index.tsx Lines 42 to 48 in 4a1f41e
|
Here's a list of links that need to be updated. I've included the breadcrumbs for now, but we could also drop those for an initial implementation if they're hard to get right.
|
To answer your question:
I don't think so, we need to know which local UI filters are supported by the page we are linking to, otherwise filters will be applied without a UI to make them visible to the user. |
Makes sense. So the simpler solution is to add them manually to the links as needed. Or what do you think? |
@sqren I think having components like |
Closed in #43988. |
If a local UI filter is selected in one view, and the user navigates to another view that has that filter as well, the filter value should persist. E.g. when the user has selected the
host
in the services list, and clicks on the traces tab, the host filter should be carried over into the traces view. This is useful for the user when they're investigating certain components, e.g. how a specific host is performing.The text was updated successfully, but these errors were encountered: