// This component is not been used in the application as we support only metrics for ApDex as of now. // This component is been kept for future reference. import { ENTITY_VERSION_V4 } from 'constants/app'; import { PANEL_TYPES } from 'constants/queryBuilder'; import Graph from 'container/GridCardLayout/GridCard'; import { GraphTitle } from 'container/MetricsApplication/constant'; import { getWidgetQueryBuilder } from 'container/MetricsApplication/MetricsApplication.factory'; import { apDexTracesQueryBuilderQueries } from 'container/MetricsApplication/MetricsPageQueries/OverviewQueries'; import { useMemo } from 'react'; import { useParams } from 'react-router-dom'; import { EQueryType } from 'types/common/dashboard'; import { v4 as uuid } from 'uuid'; import { IServiceName } from '../../types'; import { ApDexDataSwitcherProps } from './types'; function ApDexTraces({ handleGraphClick, onDragSelect, topLevelOperationsRoute, tagFilterItems, thresholdValue, }: ApDexDataSwitcherProps): JSX.Element { const { servicename: encodedServiceName } = useParams(); const servicename = decodeURIComponent(encodedServiceName); const apDexTracesWidget = useMemo( () => getWidgetQueryBuilder({ query: { queryType: EQueryType.QUERY_BUILDER, promql: [], builder: apDexTracesQueryBuilderQueries({ servicename, tagFilterItems, topLevelOperationsRoute, threashold: thresholdValue || 0, }), clickhouse_sql: [], id: uuid(), }, title: GraphTitle.APDEX, panelTypes: PANEL_TYPES.TIME_SERIES, }), [servicename, tagFilterItems, thresholdValue, topLevelOperationsRoute], ); const isQueryEnabled = topLevelOperationsRoute.length > 0 && thresholdValue !== undefined; return ( ); } export default ApDexTraces;