123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259 |
- 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 {
- getSummaryValueForOp,
- type MetricsSamplesResults,
- } from 'sentry/utils/metrics/useMetricsSamples';
- import {fitToValueRect} from 'sentry/views/ddm/chart/chartUtils';
- import type {
- CombinedMetricChartProps,
- ScatterSeries,
- Series,
- } from 'sentry/views/ddm/chart/types';
- export const SAMPLES_X_AXIS_ID = 'xAxisSamples';
- export const SAMPLES_Y_AXIS_ID = 'yAxisSamples';
- function getValueRectFromSeries(series: Series[]) {
- const referenceSeries = series[0];
- if (!referenceSeries) {
- return {xMin: -Infinity, xMax: Infinity, yMin: -Infinity, yMax: Infinity};
- }
- const seriesWithSameUnit = series.filter(
- s => s.unit === referenceSeries.unit && !s.hidden
- );
- const scalingFactor = referenceSeries.scalingFactor ?? 1;
- const xValues = referenceSeries.data.map(entry => entry.name);
- const yValues = [referenceSeries, ...seriesWithSameUnit].flatMap(s =>
- s.data.map(entry => entry.value)
- );
- return {
- xMin: Math.min(...xValues),
- xMax: Math.max(...xValues),
- yMin: Math.min(0, ...yValues) / scalingFactor,
- yMax: Math.max(0, ...yValues) / scalingFactor,
- };
- }
- // TODO: remove this once we have a stabilized type for this
- type EChartMouseEventParam = Parameters<EChartClickHandler>[0];
- interface UseMetricChartSamplesOptions {
- timeseries: Series[];
- highlightedSampleId?: string;
- onSampleClick?: (sample: MetricsSamplesResults<Field>['data'][number]) => void;
- operation?: string;
- samples?: MetricsSamplesResults<Field>['data'];
- unit?: string;
- }
- export function useMetricChartSamples({
- timeseries,
- highlightedSampleId,
- onSampleClick,
- operation,
- samples,
- unit = '',
- }: UseMetricChartSamplesOptions) {
- const theme = useTheme();
- const chartRef = useRef<ReactEchartsRef>(null);
- const [valueRect, setValueRect] = useState(() => getValueRectFromSeries(timeseries));
- 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(getValueRectFromSeries(timeseries));
- }, [timeseries]);
- const xAxis: XAXisOption = useMemo(() => {
- return {
- id: SAMPLES_X_AXIS_ID,
- show: false,
- axisLabel: {
- show: false,
- },
- axisPointer: {
- type: 'none',
- },
- min: valueRect.xMin,
- max: valueRect.xMax,
- };
- }, [valueRect.xMin, valueRect.xMax]);
- const yAxis: YAXisOption = useMemo(() => {
- return {
- id: SAMPLES_Y_AXIS_ID,
- show: false,
- axisLabel: {
- show: false,
- },
- min: valueRect.yMin,
- max: valueRect.yMax,
- };
- }, [valueRect.yMin, valueRect.yMax]);
- 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.seriesName];
- if (defined(onSampleClick) && defined(sample)) {
- onSampleClick(sample);
- }
- },
- [onSampleClick, samplesById]
- );
- const applyChartProps = useCallback(
- (baseProps: CombinedMetricChartProps): CombinedMetricChartProps => {
- let series: ScatterSeries[] = [];
- const newYAxisIndex = Array.isArray(baseProps.yAxes) ? baseProps.yAxes.length : 1;
- const newXAxisIndex = Array.isArray(baseProps.xAxes) ? baseProps.xAxes.length : 1;
- if (!isCumulativeOp(operation)) {
- series = (samples ?? []).map((sample, index) => {
- const isHighlighted = highlightedSampleId === sample.id;
- const xValue = moment(sample.timestamp).valueOf();
- const value = getSummaryValueForOp(sample.summary, operation);
- const yValue = value;
- const [xPosition, yPosition] = fitToValueRect(xValue, yValue, valueRect);
- return {
- seriesName: sample.id,
- id: `${index}_${sample.id}`,
- operation: '',
- unit: '',
- symbolSize: isHighlighted ? 20 : 11,
- animation: false,
- symbol: yPosition === yValue ? 'circle' : 'arrow',
- symbolRotate: yPosition > yValue ? 180 : 0,
- color: theme.purple400,
- itemStyle: {
- color: theme.purple400,
- opacity: 0.95,
- borderColor: theme.white,
- borderWidth: 1,
- },
- yAxisIndex: newYAxisIndex,
- xAxisIndex: newXAxisIndex,
- xValue,
- yValue,
- total: yValue,
- tooltip: {
- axisPointer: {
- type: 'none',
- },
- },
- data: [
- {
- name: xPosition,
- value: yPosition,
- },
- ],
- z: baseProps.series.length + 1,
- };
- });
- }
- 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,
- highlightedSampleId,
- operation,
- samples,
- theme.purple400,
- theme.white,
- valueRect,
- xAxis,
- yAxis,
- ]
- );
- return useMemo(() => {
- if (!defined(samples)) {
- return undefined;
- }
- return {applyChartProps};
- }, [applyChartProps, samples]);
- }
- export type UseMetricSamplesResult = ReturnType<typeof useMetricChartSamples>;
|