123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481 |
- import type {RefObject} from 'react';
- import {useCallback, useEffect, useMemo, useRef, useState} from 'react';
- import {useTheme} from '@emotion/react';
- import type {XAXisOption, YAXisOption} from 'echarts/types/dist/shared';
- import moment from 'moment';
- import {getFormatter} from 'sentry/components/charts/components/tooltip';
- import {isChartHovered} from 'sentry/components/charts/utils';
- import type {Field} from 'sentry/components/ddm/metricSamplesTable';
- import {t} from 'sentry/locale';
- import type {EChartClickHandler, ReactEchartsRef} from 'sentry/types/echarts';
- import {defined} from 'sentry/utils';
- import mergeRefs from 'sentry/utils/mergeRefs';
- import {isCumulativeOp} from 'sentry/utils/metrics';
- import {formatMetricsUsingUnitAndOp} from 'sentry/utils/metrics/formatters';
- import type {MetricCorrelation, MetricSummary} from 'sentry/utils/metrics/types';
- import {
- getSummaryValueForOp,
- type MetricsSamplesResults,
- } from 'sentry/utils/metrics/useMetricsSamples';
- import {fitToValueRect, getValueRect} from 'sentry/views/ddm/chart/chartUtils';
- import type {CombinedMetricChartProps, Series} from 'sentry/views/ddm/chart/types';
- import type {Sample} from 'sentry/views/ddm/widget';
- type UseChartSamplesProps = {
- timeseries: Series[];
- chartRef?: RefObject<ReactEchartsRef>;
- correlations?: MetricCorrelation[];
- highlightedSampleId?: string;
- onClick?: (sample: Sample) => void;
- onMouseOut?: (sample: Sample) => void;
- onMouseOver?: (sample: Sample) => void;
- operation?: string;
- unit?: string;
- };
- // TODO: remove this once we have a stabilized type for this
- type ChartSample = MetricCorrelation & MetricSummary;
- function getDateRange(timeseries: Series[]) {
- if (!timeseries?.length) {
- return {min: -Infinity, max: Infinity};
- }
- const min = timeseries[0].data[0].name as number;
- const max = timeseries[0].data[timeseries[0].data.length - 1].name as number;
- return {min, max};
- }
- type EChartMouseEventParam = Parameters<EChartClickHandler>[0];
- export function useMetricChartSamples({
- correlations,
- onClick,
- highlightedSampleId,
- unit = '',
- operation,
- timeseries,
- }: UseChartSamplesProps) {
- const theme = useTheme();
- const chartRef = useRef<ReactEchartsRef>(null);
- const scalingFactor = timeseries?.[0]?.scalingFactor ?? 1;
- const [valueRect, setValueRect] = useState(getValueRect(chartRef));
- const samples: Record<string, ChartSample> = useMemo(() => {
- return (correlations ?? [])
- ?.flatMap(correlation => [
- ...correlation.metricSummaries.map(summaries => ({...summaries, ...correlation})),
- ])
- .reduce((acc, sample) => {
- acc[sample.transactionId] = sample;
- return acc;
- }, {});
- }, [correlations]);
- useEffect(() => {
- // Changes in timeseries change the valueRect since the timeseries yAxis auto scales
- // and scatter yAxis needs to match the scale
- setValueRect(getValueRect(chartRef));
- }, [chartRef, timeseries]);
- const xAxis: XAXisOption = useMemo(() => {
- const {min, max} = getDateRange(timeseries);
- return {
- id: 'xAxisScatter',
- scale: false,
- show: false,
- axisLabel: {
- formatter: () => {
- return '';
- },
- },
- axisPointer: {
- type: 'none',
- },
- min: Math.max(valueRect.xMin, min),
- max: Math.min(valueRect.xMax, max),
- };
- }, [valueRect.xMin, valueRect.xMax, timeseries]);
- const yAxis: YAXisOption = useMemo(() => {
- return {
- id: 'yAxisScatter',
- scale: false,
- show: false,
- axisLabel: {
- formatter: () => {
- return '';
- },
- },
- min: valueRect.yMin,
- max: valueRect.yMax,
- };
- }, [valueRect.yMin, valueRect.yMax]);
- const getSample = useCallback(
- (event: EChartMouseEventParam): ChartSample | undefined => {
- return samples[event.seriesId];
- },
- [samples]
- );
- const handleClick = useCallback<EChartClickHandler>(
- (event: EChartMouseEventParam) => {
- if (!onClick) {
- return;
- }
- const sample = getSample(event);
- if (!sample) {
- return;
- }
- onClick(sample);
- },
- [getSample, onClick]
- );
- const series = useMemo(() => {
- if (isCumulativeOp(operation)) {
- // TODO: for now we do not show samples for cumulative operations,
- // we will implement them as marklines
- return [];
- }
- return Object.values(samples).map(sample => {
- const isHighlighted = highlightedSampleId === sample.transactionId;
- const xValue = moment(sample.timestamp).valueOf();
- const yValue = (((sample.min ?? 0) + (sample.max ?? 0)) / 2) * scalingFactor;
- const [xPosition, yPosition] = fitToValueRect(xValue, yValue, valueRect);
- const symbol = yPosition === yValue ? 'circle' : 'arrow';
- const symbolRotate = yPosition > yValue ? 180 : 0;
- return {
- seriesName: sample.transactionId,
- id: sample.spanId,
- operation: '',
- unit: '',
- symbolSize: isHighlighted ? 20 : 10,
- animation: false,
- symbol,
- symbolRotate,
- color: theme.purple400,
- // TODO: for now we just pass these ids through, but we should probably index
- // samples by an id and then just pass that reference
- itemStyle: {
- color: theme.purple400,
- opacity: 1,
- },
- yAxisIndex: 1,
- xAxisIndex: 1,
- xValue,
- yValue,
- tooltip: {
- axisPointer: {
- type: 'none',
- },
- },
- data: [
- {
- name: xPosition,
- value: yPosition,
- },
- ],
- z: 10,
- };
- });
- }, [
- operation,
- samples,
- highlightedSampleId,
- scalingFactor,
- valueRect,
- theme.purple400,
- ]);
- const formatterOptions = useMemo(() => {
- return {
- isGroupedByDate: true,
- limit: 1,
- showTimeInTooltip: true,
- addSecondsToTimeFormat: true,
- nameFormatter: (name: string) => {
- return t('Event %s', name.substring(0, 8));
- },
- valueFormatter: (_, label?: string) => {
- // We need to access the sample as the charts datapoints are fit to the charts viewport
- const sample = samples[label ?? ''];
- const yValue = ((sample.min ?? 0) + (sample.max ?? 0)) / 2;
- return formatMetricsUsingUnitAndOp(yValue, unit, operation);
- },
- };
- }, [operation, samples, unit]);
- const applyChartProps = useCallback(
- (baseProps: CombinedMetricChartProps): CombinedMetricChartProps => {
- return {
- ...baseProps,
- forwardedRef: mergeRefs([baseProps.forwardedRef, chartRef]),
- scatterSeries: series,
- xAxes: [...(Array.isArray(baseProps.xAxes) ? baseProps.xAxes : []), xAxis],
- yAxes: [...(Array.isArray(baseProps.yAxes) ? baseProps.yAxes : []), yAxis],
- onClick: (...args) => {
- handleClick(...args);
- baseProps.onClick?.(...args);
- },
- tooltip: {
- formatter: (params: any, asyncTicket) => {
- // Only show the tooltip if the current chart is hovered
- // as chart groups trigger the tooltip for all charts in the group when one is hoverered
- if (!isChartHovered(chartRef?.current)) {
- return '';
- }
- // Hovering a single correlated sample datapoint
- if (params.seriesType === 'scatter') {
- return getFormatter(formatterOptions)(params, asyncTicket);
- }
- const baseFormatter = baseProps.tooltip?.formatter;
- if (typeof baseFormatter === 'string') {
- return baseFormatter;
- }
- if (!baseFormatter) {
- throw new Error(
- 'You need to define a tooltip formatter for the chart when using metric samples'
- );
- }
- return baseFormatter(params, asyncTicket);
- },
- },
- };
- },
- [formatterOptions, handleClick, series, xAxis, yAxis]
- );
- // eslint-disable-next-line react-hooks/exhaustive-deps
- return useMemo(
- () => ({
- applyChartProps,
- }),
- [applyChartProps]
- );
- }
- interface UseMetricChartSamplesV2Options {
- timeseries: Series[];
- highlightedSampleId?: string;
- onSampleClick?: (sample: MetricsSamplesResults<Field>['data'][number]) => void;
- operation?: string;
- samples?: MetricsSamplesResults<Field>['data'];
- unit?: string;
- }
- export function useMetricChartSamplesV2({
- timeseries,
- highlightedSampleId,
- onSampleClick,
- operation,
- samples,
- unit = '',
- }: UseMetricChartSamplesV2Options) {
- const theme = useTheme();
- const chartRef = useRef<ReactEchartsRef>(null);
- const timeseriesScalingFactor = timeseries?.[0]?.scalingFactor ?? 1;
- const [valueRect, setValueRect] = useState(getValueRect(chartRef));
- const samplesById = useMemo(() => {
- return (samples ?? []).reduce((acc, sample) => {
- acc[sample.id] = sample;
- return acc;
- }, {});
- }, [samples]);
- useEffect(() => {
- // Changes in timeseries change the valueRect since the timeseries yAxis auto scales
- // and scatter yAxis needs to match the scale
- setValueRect(getValueRect(chartRef));
- }, [chartRef, timeseries]);
- const xAxis: XAXisOption = useMemo(() => {
- const {min, max} = getDateRange(timeseries);
- return {
- id: 'xAxisScatter',
- scale: false,
- show: false,
- axisLabel: {
- formatter: () => {
- return '';
- },
- },
- axisPointer: {
- type: 'none',
- },
- min: Math.max(valueRect.xMin, min),
- max: Math.min(valueRect.xMax, max),
- };
- }, [valueRect.xMin, valueRect.xMax, timeseries]);
- const yAxis: YAXisOption = useMemo(() => {
- return {
- id: 'yAxisScatter',
- scale: false,
- show: false,
- axisLabel: {
- formatter: () => {
- return '';
- },
- },
- min: valueRect.yMin,
- max: valueRect.yMax,
- };
- }, [valueRect.yMin, valueRect.yMax]);
- const series = useMemo(() => {
- if (isCumulativeOp(operation)) {
- // TODO: for now we do not show samples for cumulative operations
- // figure out how should this be shown
- return [];
- }
- return (samples ?? []).map(sample => {
- const isHighlighted = highlightedSampleId === sample.id;
- const xValue = moment(sample.timestamp).valueOf();
- const value = getSummaryValueForOp(sample.summary, operation);
- const yValue = value * timeseriesScalingFactor;
- const [xPosition, yPosition] = fitToValueRect(xValue, yValue, valueRect);
- return {
- seriesName: sample.id,
- id: sample.id,
- operation: '',
- unit: '',
- symbolSize: isHighlighted ? 20 : 10,
- animation: false,
- symbol: yPosition === yValue ? 'circle' : 'arrow',
- symbolRotate: yPosition > yValue ? 180 : 0,
- color: theme.purple400,
- itemStyle: {
- color: theme.purple400,
- opacity: 1,
- },
- yAxisIndex: 1,
- xAxisIndex: 1,
- xValue,
- yValue,
- tooltip: {
- axisPointer: {
- type: 'none',
- },
- },
- data: [
- {
- name: xPosition,
- value: yPosition,
- },
- ],
- z: 10,
- };
- });
- }, [
- highlightedSampleId,
- operation,
- samples,
- theme.purple400,
- timeseriesScalingFactor,
- valueRect,
- ]);
- const formatterOptions = useMemo(() => {
- return {
- isGroupedByDate: true,
- limit: 1,
- showTimeInTooltip: true,
- addSecondsToTimeFormat: true,
- nameFormatter: (name: string) => {
- return t('Span %s', name.substring(0, 8));
- },
- valueFormatter: (_, label?: string) => {
- // We need to access the sample as the charts datapoints are fit to the charts viewport
- const sample = samplesById[label ?? ''];
- const yValue = getSummaryValueForOp(sample.summary, operation);
- return formatMetricsUsingUnitAndOp(yValue, unit, operation);
- },
- };
- }, [operation, samplesById, unit]);
- const handleClick = useCallback<EChartClickHandler>(
- (event: EChartMouseEventParam) => {
- const sample = samplesById[event.seriesId];
- if (defined(onSampleClick) && defined(sample)) {
- onSampleClick(sample);
- }
- },
- [onSampleClick, samplesById]
- );
- const applyChartProps = useCallback(
- (baseProps: CombinedMetricChartProps): CombinedMetricChartProps => {
- return {
- ...baseProps,
- forwardedRef: mergeRefs([baseProps.forwardedRef, chartRef]),
- scatterSeries: series,
- xAxes: [...(Array.isArray(baseProps.xAxes) ? baseProps.xAxes : []), xAxis],
- yAxes: [...(Array.isArray(baseProps.yAxes) ? baseProps.yAxes : []), yAxis],
- onClick: (...args) => {
- handleClick(...args);
- baseProps.onClick?.(...args);
- },
- tooltip: {
- formatter: (params: any, asyncTicket) => {
- // Only show the tooltip if the current chart is hovered
- // as chart groups trigger the tooltip for all charts in the group when one is hoverered
- if (!isChartHovered(chartRef?.current)) {
- return '';
- }
- // Hovering a single correlated sample datapoint
- if (params.seriesType === 'scatter') {
- return getFormatter(formatterOptions)(params, asyncTicket);
- }
- const baseFormatter = baseProps.tooltip?.formatter;
- if (typeof baseFormatter === 'string') {
- return baseFormatter;
- }
- if (!baseFormatter) {
- throw new Error(
- 'You need to define a tooltip formatter for the chart when using metric samples'
- );
- }
- return baseFormatter(params, asyncTicket);
- },
- },
- };
- },
- [formatterOptions, handleClick, series, xAxis, yAxis]
- );
- return useMemo(() => {
- if (!defined(samples)) {
- return undefined;
- }
- return {applyChartProps};
- }, [applyChartProps, samples]);
- }
- export type UseMetricSamplesResult = ReturnType<typeof useMetricChartSamples>;
|