Skip to content

Commit

Permalink
Hide instances latency distribution chart
Browse files Browse the repository at this point in the history
...until #88852 and #92631 are resolved.
  • Loading branch information
smith committed Feb 25, 2021
1 parent 2d011e2 commit 9a0a139
Showing 1 changed file with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -66,13 +72,13 @@ export function ServiceOverviewInstancesChartAndTable({

return (
<>
<EuiFlexItem grow={3}>
{/* <EuiFlexItem grow={3}>
<InstancesLatencyDistributionChart
height={chartHeight}
items={data}
status={status}
/>
</EuiFlexItem>
</EuiFlexItem> */}
<EuiFlexItem grow={7}>
<EuiPanel>
<ServiceOverviewInstancesTable
Expand Down

0 comments on commit 9a0a139

Please sign in to comment.