-
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
[Infra UI] Infrastructure metrics explorer #28027
Comments
Pinging @elastic/infrastructure-ui |
With regards to how many hosts we bring back for the "grouping". If we use the TSVB backend for the data we are going to be limited to using a traditional terms agg which you have to provide a limit (defaults to 10). One idea would be to use a composite aggregation to paginate through the groupings. Then use TSVB to get the metrics only for the current page of results. So if we are showing 9 charts per page then there would only be 9 TSVB requests (in parallel) which would be like having 9 TSVB charts on a page (which performs well today). |
I posted an "draft" PR at: #34019 For the most part this is feature complete with regards to what's been outlined in this ticket. I invite y'all to load the Draft PR in a development env and play around to get a feel for how things work. It would be great to get early feedback before the functional tests are written. Feel free to point out any bugs you find (there should be some) but more importantly focus on usability feedback. By no means is this a finished product still lot's of polishing todo. There are a few areas that we should discuss functionality wise.
|
Discussion issue
This issue depends on the navigation changes in #27916
Co-authors: @roncohen @exekias
Motivation
TSVB somewhat supports this use cases, but requires a lot of knowledge and configuration.
Here's some challenges with using TSVB for this use case:
Proposed initial solution
ES index pattern is pre-configured via Infrastructure's configuration options.
Auto-suggestion will only show metrics with numeric values within active time range.
Users get a graph with just one single input (metric field name)
Checkbox for derivative/rate. (Later, it'd be nice to get metric type automatically to solve this automatically)
Ideally the metric explorer will support the unit convention we already use for
pct
andbytes
Similar to metric field, the auto-suggestion only suggests fields with keyword values within active time range
One chart per
beat.hostname
One chart per metric per
beat.hostname
The text was updated successfully, but these errors were encountered: