123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- import Grid from 'sentry/components/charts/components/grid';
- import type {LineChartProps} from 'sentry/components/charts/lineChart';
- import {transformToLineSeries} from 'sentry/components/charts/lineChart';
- import getBreakpointChartOptionsFromData, {
- type EventBreakpointChartData,
- } from 'sentry/components/events/eventStatisticalDetector/breakpointChartOptions';
- import type {EventsStatsSeries} from 'sentry/types/organization';
- import {transformStatsResponse} from 'sentry/utils/profiling/hooks/utils';
- import {lightTheme as theme} from 'sentry/utils/theme';
- import type {NormalizedTrendsTransaction} from 'sentry/views/performance/trends/types';
- import {DEFAULT_FONT_FAMILY, slackChartDefaults, slackChartSize} from './slack';
- import type {RenderDescriptor} from './types';
- import {ChartType} from './types';
- export const performanceCharts: RenderDescriptor<ChartType>[] = [];
- export type FunctionRegressionPercentileData = {
- data: EventsStatsSeries<'p95()'>;
- };
- const performanceChartDefaults = {
- ...slackChartDefaults,
- grid: Grid({left: 10, right: 5, bottom: 5}),
- };
- function modifyOptionsForSlack(options: Omit<LineChartProps, 'series'>) {
- options.legend = options.legend || {};
- options.legend.icon = 'none';
- options.legend.left = '25';
- options.legend.top = '20';
- options.grid = slackChartDefaults.grid;
- options.yAxis = options.yAxis || {};
- options.yAxis.axisLabel = options.yAxis.axisLabel || {};
- options.yAxis.axisLabel.fontSize = 11;
- options.yAxis.axisLabel.fontFamily = DEFAULT_FONT_FAMILY;
- options.xAxis = options.xAxis || {};
- options.xAxis.axisLabel = options.xAxis.axisLabel || {};
- options.xAxis.axisLabel.fontSize = 11;
- options.xAxis.axisLabel.fontFamily = DEFAULT_FONT_FAMILY;
- return {
- ...options,
- grid: performanceChartDefaults.grid,
- visualMap: options.options?.visualMap,
- backgroundColor: theme.background,
- };
- }
- type FunctionRegressionChartData = {
- evidenceData: NormalizedTrendsTransaction;
- rawResponse: any;
- };
- performanceCharts.push({
- key: ChartType.SLACK_PERFORMANCE_ENDPOINT_REGRESSION,
- getOption: (data: EventBreakpointChartData) => {
- const {chartOptions, series} = getBreakpointChartOptionsFromData(
- data,
- ChartType.SLACK_PERFORMANCE_ENDPOINT_REGRESSION,
- theme
- );
- const transformedSeries = transformToLineSeries({series});
- const modifiedOptions = modifyOptionsForSlack(chartOptions);
- return {
- ...modifiedOptions,
- series: transformedSeries,
- };
- },
- ...slackChartSize,
- });
- performanceCharts.push({
- key: ChartType.SLACK_PERFORMANCE_FUNCTION_REGRESSION,
- getOption: (data: FunctionRegressionChartData) => {
- const transformed = transformStatsResponse(
- 'profileFunctions',
- ['p95()'],
- data.rawResponse
- );
- const percentileData = {
- data: transformed,
- };
- const param = {
- percentileData: percentileData as FunctionRegressionPercentileData,
- evidenceData: data.evidenceData,
- };
- const {chartOptions, series} = getBreakpointChartOptionsFromData(
- param,
- ChartType.SLACK_PERFORMANCE_FUNCTION_REGRESSION,
- theme
- );
- const transformedSeries = transformToLineSeries({series});
- const modifiedOptions = modifyOptionsForSlack(chartOptions);
- return {
- ...modifiedOptions,
- series: transformedSeries,
- };
- },
- ...slackChartSize,
- });
|