diff --git a/x-pack/plugins/apm/public/components/app/service_overview/service_overview_instances_chart_and_table.tsx b/x-pack/plugins/apm/public/components/app/service_overview/service_overview_instances_chart_and_table.tsx
index b01529a86e88f..435def8bb9a91 100644
--- a/x-pack/plugins/apm/public/components/app/service_overview/service_overview_instances_chart_and_table.tsx
+++ b/x-pack/plugins/apm/public/components/app/service_overview/service_overview_instances_chart_and_table.tsx
@@ -10,9 +10,15 @@ import React from 'react';
import { useApmServiceContext } from '../../../context/apm_service/use_apm_service_context';
import { useUrlParams } from '../../../context/url_params_context/use_url_params';
import { useFetcher } from '../../../hooks/use_fetcher';
-import { InstancesLatencyDistributionChart } from '../../shared/charts/instances_latency_distribution_chart';
import { ServiceOverviewInstancesTable } from './service_overview_instances_table';
+// We're hiding this chart until these issues are resolved in the 7.13 timeframe:
+//
+// * [[APM] Tooltips for instances latency distribution chart](https://github.com/elastic/kibana/issues/88852)
+// * [[APM] x-axis on the instance bubble chart is broken](https://github.com/elastic/kibana/issues/92631)
+//
+// import { InstancesLatencyDistributionChart } from '../../shared/charts/instances_latency_distribution_chart';
+
interface ServiceOverviewInstancesChartAndTableProps {
chartHeight: number;
serviceName: string;
@@ -66,13 +72,13 @@ export function ServiceOverviewInstancesChartAndTable({
return (
<>
-
+ {/*
-
+ */}