123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350 |
- import {Fragment, useCallback} from 'react';
- import {Link} from 'react-router';
- import styled from '@emotion/styled';
- import {PlatformIcon} from 'platformicons';
- import * as qs from 'query-string';
- import {LinkButton} from 'sentry/components/button';
- import DateTime from 'sentry/components/dateTime';
- import Duration from 'sentry/components/duration';
- import GridEditable, {
- COL_WIDTH_UNDEFINED,
- GridColumnHeader,
- GridColumnOrder,
- } from 'sentry/components/gridEditable';
- import {extractSelectionParameters} from 'sentry/components/organizations/pageFilters/utils';
- import TextOverflow from 'sentry/components/textOverflow';
- import {Tooltip} from 'sentry/components/tooltip';
- import {CHART_PALETTE} from 'sentry/constants/chartPalette';
- import {IconArrow, IconProfiling} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import {MRI} from 'sentry/types';
- import {generateEventSlug} from 'sentry/utils/discover/urls';
- import {getDuration} from 'sentry/utils/formatters';
- import type {MetricCorrelation, SelectionRange} from 'sentry/utils/metrics/types';
- import {useCorrelatedSamples} from 'sentry/utils/metrics/useMetricsCodeLocations';
- import {getTransactionDetailsUrl} from 'sentry/utils/performance/urls';
- import {useLocation} from 'sentry/utils/useLocation';
- import useOrganization from 'sentry/utils/useOrganization';
- import useProjects from 'sentry/utils/useProjects';
- import {normalizeUrl} from 'sentry/utils/withDomainRequired';
- import ColorBar from 'sentry/views/performance/vitalDetail/colorBar';
- /**
- * Limits the number of spans to the top n + an "other" entry
- */
- function sortAndLimitSpans(samples: MetricCorrelation['spansSummary'], limit: number) {
- if (!samples) {
- return [];
- }
- const sortedSpans = [...samples].sort((a, b) => b.spanDuration - a.spanDuration);
- return sortedSpans.slice(0, limit).concat([
- {
- spanDuration: sortedSpans
- .slice(limit)
- .reduce((acc, span) => acc + span.spanDuration, 0),
- spanOp: `+${sortedSpans.length - limit} more`,
- },
- ]);
- }
- export type SamplesTableProps = SelectionRange & {
- highlightedRow?: string | null;
- mri?: MRI;
- onRowHover?: (sampleId?: string) => void;
- query?: string;
- };
- type Column = GridColumnHeader<keyof MetricCorrelation>;
- const columnOrder: GridColumnOrder<keyof MetricCorrelation>[] = [
- {key: 'transactionId', width: COL_WIDTH_UNDEFINED, name: 'Event ID'},
- {key: 'segmentName', width: COL_WIDTH_UNDEFINED, name: 'Transaction'},
- {key: 'spansNumber', width: COL_WIDTH_UNDEFINED, name: 'Number of Spans'},
- {key: 'spansSummary', width: COL_WIDTH_UNDEFINED, name: 'Spans Summary'},
- {key: 'duration', width: COL_WIDTH_UNDEFINED, name: 'Duration'},
- {key: 'traceId', width: COL_WIDTH_UNDEFINED, name: 'Trace ID'},
- {key: 'timestamp', width: COL_WIDTH_UNDEFINED, name: 'Timestamp'},
- {key: 'profileId', width: COL_WIDTH_UNDEFINED, name: 'Profile'},
- ];
- export function SampleTable({
- mri,
- highlightedRow,
- onRowHover,
- ...metricMetaOptions
- }: SamplesTableProps) {
- const location = useLocation();
- const organization = useOrganization();
- const {projects} = useProjects();
- const {data, isFetching} = useCorrelatedSamples(mri, metricMetaOptions);
- const rows = data?.metrics
- .map(m => m.metricSpans)
- .flat()
- .filter(Boolean)
- // We only want to show the first 10 correlations
- .slice(0, 10) as MetricCorrelation[];
- function renderHeadCell(col: Column) {
- if (col.key === 'profileId') {
- return <AlignCenter>{col.name}</AlignCenter>;
- }
- if (col.key === 'duration') {
- return (
- <DurationHeadCell>
- {col.name}
- <IconArrow size="xs" direction="down" />
- </DurationHeadCell>
- );
- }
- return <span>{col.name}</span>;
- }
- function renderBodyCell(col: Column, row: MetricCorrelation) {
- const {key} = col;
- if (!row[key]) {
- return <AlignCenter>{'\u2014'}</AlignCenter>;
- }
- const project = projects.find(p => parseInt(p.id, 10) === row.projectId);
- const eventSlug = generateEventSlug({
- id: row.transactionId,
- project: project?.slug,
- });
- const highlighted = row.transactionId === highlightedRow;
- if (key === 'transactionId') {
- return (
- <BodyCell
- rowId={row.transactionId}
- onHover={onRowHover}
- highlighted={highlighted}
- >
- <Link
- to={getTransactionDetailsUrl(
- organization.slug,
- eventSlug,
- undefined,
- {referrer: 'metrics', openPanel: 'open'},
- row.spansDetails[0]?.spanId
- )}
- target="_blank"
- >
- {row.transactionId.slice(0, 8)}
- </Link>
- </BodyCell>
- );
- }
- if (key === 'segmentName') {
- return (
- <BodyCell
- rowId={row.transactionId}
- onHover={onRowHover}
- highlighted={highlighted}
- >
- <TextOverflow>
- <Tooltip title={project?.slug}>
- <StyledPlatformIcon platform={project?.platform || 'default'} />
- </Tooltip>
- <Link
- to={normalizeUrl(
- `/organizations/${organization.slug}/performance/summary/?${qs.stringify({
- ...extractSelectionParameters(location.query),
- project: project?.id,
- transaction: row.segmentName,
- referrer: 'metrics',
- })}`
- )}
- >
- {row.segmentName}
- </Link>
- </TextOverflow>
- </BodyCell>
- );
- }
- if (key === 'duration') {
- // We get duration in miliseconds, but getDuration expects seconds
- return (
- <BodyCell
- rowId={row.transactionId}
- onHover={onRowHover}
- highlighted={highlighted}
- >
- {getDuration(row.duration / 1000, 2, true)}
- </BodyCell>
- );
- }
- if (key === 'traceId') {
- return (
- <BodyCell
- rowId={row.transactionId}
- onHover={onRowHover}
- highlighted={highlighted}
- >
- <Link
- to={normalizeUrl(
- `/organizations/${organization.slug}/performance/trace/${row.traceId}/`
- )}
- >
- {row.traceId.slice(0, 8)}
- </Link>
- </BodyCell>
- );
- }
- if (key === 'spansSummary') {
- const totalDuration =
- row.spansSummary?.reduce(
- (acc, spanSummary) => acc + spanSummary.spanDuration,
- 0
- ) ?? 0;
- if (totalDuration === 0) {
- return <NoValue>{t('(no value)')}</NoValue>;
- }
- const preparedSpans = sortAndLimitSpans(row.spansSummary, 5);
- return (
- <StyledColorBar
- colorStops={preparedSpans.map((spanSummary, i) => {
- return {
- color: CHART_PALETTE[4][i % CHART_PALETTE.length],
- percent: (spanSummary.spanDuration / totalDuration) * 100,
- renderBarStatus: (barStatus, barKey) => (
- <Tooltip
- title={
- <Fragment>
- <div>{spanSummary.spanOp}</div>
- <div>
- <Duration
- seconds={spanSummary.spanDuration / 1000}
- fixedDigits={2}
- abbreviation
- />
- </div>
- </Fragment>
- }
- key={barKey}
- skipWrapper
- >
- {barStatus}
- </Tooltip>
- ),
- };
- })}
- />
- );
- }
- if (key === 'timestamp') {
- return (
- <BodyCell
- rowId={row.transactionId}
- onHover={onRowHover}
- highlighted={highlighted}
- >
- <DateTime date={row.timestamp} />
- </BodyCell>
- );
- }
- if (key === 'profileId') {
- return (
- <AlignCenter>
- <Tooltip title={t('View Profile')}>
- <LinkButton
- to={normalizeUrl(
- `/organizations/${organization.slug}/profiling/profile/${project?.slug}/${row.profileId}/flamegraph/`
- )}
- size="xs"
- >
- <IconProfiling size="xs" />
- </LinkButton>
- </Tooltip>
- </AlignCenter>
- );
- }
- return (
- <BodyCell rowId={row.transactionId} onHover={onRowHover} highlighted={highlighted}>
- {row[col.key]}
- </BodyCell>
- );
- }
- return (
- <Wrapper>
- <GridEditable
- isLoading={isFetching}
- columnOrder={columnOrder}
- columnSortBy={[]}
- data={rows}
- grid={{
- renderHeadCell,
- renderBodyCell,
- }}
- emptyMessage={mri ? t('No samples found') : t('Choose a metric to display data.')}
- location={location}
- />
- </Wrapper>
- );
- }
- function BodyCell({children, rowId, highlighted, onHover}: any) {
- const handleMouseOver = useCallback(() => {
- onHover(rowId);
- }, [onHover, rowId]);
- const handleMouseOut = useCallback(() => {
- onHover(null);
- }, [onHover]);
- return (
- <BodyCellWrapper
- onMouseOver={handleMouseOver}
- onMouseOut={handleMouseOut}
- highlighted={highlighted}
- >
- {children}
- </BodyCellWrapper>
- );
- }
- const Wrapper = styled('div')`
- tr:hover {
- td {
- background: ${p => p.theme.backgroundSecondary};
- }
- }
- `;
- const BodyCellWrapper = styled('span')<{highlighted?: boolean}>``;
- const AlignCenter = styled('span')`
- display: block;
- margin: auto;
- text-align: center;
- width: 100%;
- `;
- const DurationHeadCell = styled('span')`
- display: flex;
- gap: ${space(0.25)};
- `;
- const StyledPlatformIcon = styled(PlatformIcon)`
- margin-right: ${space(1)};
- height: ${space(3)};
- `;
- const StyledColorBar = styled(ColorBar)`
- margin-bottom: 0px;
- `;
- const NoValue = styled('span')`
- color: ${p => p.theme.gray300};
- `;
|