diff --git a/x-pack/plugins/apm/public/components/app/service_inventory/index.tsx b/x-pack/plugins/apm/public/components/app/service_inventory/index.tsx index 62126551a7d9c..290e71a23bbb8 100644 --- a/x-pack/plugins/apm/public/components/app/service_inventory/index.tsx +++ b/x-pack/plugins/apm/public/components/app/service_inventory/index.tsx @@ -94,6 +94,7 @@ function useServicesFetcher() { serviceNames: JSON.stringify( mainStatisticsData.items .map(({ serviceName }) => serviceName) + // Service name is sorted to guarantee the same order every time this API is called so the result can be cached. .sort() ), offset,