-
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
[Observability] [Timelines] Reduce number of alerts per page in Alerts table #111100
[Observability] [Timelines] Reduce number of alerts per page in Alerts table #111100
Conversation
I would love some feedback on where to add tests for this. |
Pinging @elastic/logs-metrics-ui (Team:logs-metrics-ui) |
@elasticmachine merge upstream |
🤔 These test failures look unrelated. |
c038960
to
601b4f2
Compare
Yes, they seem to be API test failures. I will trigger another build and see if it persists. |
@@ -370,7 +375,8 @@ export function AlertsTableTGrid(props: AlertsTableTGridProps) { | |||
filters: [], | |||
hasAlertsCrudPermissions, | |||
indexNames, | |||
itemsPerPageOptions: [10, 25, 50], | |||
itemsPerPage: 10, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Might be nice to have a comment regarding why we only have 10
. If there's an issue covering the EUI update maybe reference that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added a comment!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I dig it
#110918 looks fixed, so pulling master to try to get the build green |
@elasticmachine merge upstream |
@elastic/security-threat-hunting Can you leave your opinions on this? :) |
@miltonhultgren code lgtm. However I don't think this is really needed after the update to Eui, the performance seems much, much better even with 100 rows in 7.15. I'm not sure when the change will make it's way into master, I've only seen the upgrade in 7.15 so far. The fix is in [email protected], and master is still on [email protected]. @chandlerprall do you know when the tabbable change will make it into kibana master branch? |
Upgrading to the version immediately prior right now, waiting on reviews: #110998 As soon as that's in we'll bump to 37.6.2 which only contains the two grid performance items. Should be next Wednesday-ish? |
Closing since EUI performance improvements are soon to land! |
Re-opening in light of elastic/eui#5162 |
@elasticmachine merge upstream |
💚 Build Succeeded
Metrics [docs]Public APIs missing comments
Async chunks
Public APIs missing exports
Page load bundle
History
To update your PR or re-run it, just comment with: |
Pinging @elastic/security-threat-hunting, could I get a code owner review on this? :) |
@elasticmachine merge upstream |
merge conflict between base and head |
Issues might have been fixed (again) in elastic/eui#5163, holding off with this PR. |
Summary
Part of #110758
While we wait for elastic/eui#5116 and elastic/eui#5115 to make it into Kibana we will limit the alerts table to only show 10 rows per page to work around the performance issues.
When there are a lot of alerts, we only show 10 items per page, we should the pages but no option to change the page size.
Checklist