[APM] Service inventory: detailed stats fetched for all services #133697
Labels
apm:service-inventory
apm:test-plan-done
Pull request that was successfully tested during the test plan
bug
Fixes for quality problems that affect the customer experience
Team:APM
All issues that need APM UI Team support
v8.4.0
Instead of fetching detailed stats for only the services displayed on the current page, we are fetching them for all services loaded, which could be 1000s. This defeats the purpose of filtering on
serviceNames
: loading data for only the visible services should be a performance improvement. This will just slow it down due to the cost of the term query. Additionally, because it's a query parameter, it might cause issues with HTTP Servers, as the recommendation usually is to have a max length for the entire query string of 1024 characters.kibana/x-pack/plugins/apm/public/components/app/service_inventory/index.tsx
Lines 101 to 120 in c1d0ec5
This has been the case since the initial implementation in #107094 (7.15). We should:
serviceNames
The text was updated successfully, but these errors were encountered: