123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581 |
- import {Component, Fragment} from 'react';
- import type {RouteContextInterface} from 'react-router';
- import styled from '@emotion/styled';
- import type {Location, LocationDescriptor, LocationDescriptorObject} from 'history';
- import groupBy from 'lodash/groupBy';
- import {Client} from 'sentry/api';
- import {LinkButton} from 'sentry/components/button';
- import type {GridColumn} from 'sentry/components/gridEditable';
- import GridEditable, {COL_WIDTH_UNDEFINED} from 'sentry/components/gridEditable';
- import SortLink from 'sentry/components/gridEditable/sortLink';
- import Link from 'sentry/components/links/link';
- import Pagination from 'sentry/components/pagination';
- import QuestionTooltip from 'sentry/components/questionTooltip';
- import {Tooltip} from 'sentry/components/tooltip';
- import {IconProfiling} from 'sentry/icons';
- import {t, tct} from 'sentry/locale';
- import type {IssueAttachment} from 'sentry/types/group';
- import type {Organization} from 'sentry/types/organization';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import {browserHistory} from 'sentry/utils/browserHistory';
- import type {TableData, TableDataRow} from 'sentry/utils/discover/discoverQuery';
- import DiscoverQuery from 'sentry/utils/discover/discoverQuery';
- import type EventView from 'sentry/utils/discover/eventView';
- import {isFieldSortable} from 'sentry/utils/discover/eventView';
- import {getFieldRenderer} from 'sentry/utils/discover/fieldRenderers';
- import {
- fieldAlignment,
- getAggregateAlias,
- isSpanOperationBreakdownField,
- SPAN_OP_RELATIVE_BREAKDOWN_FIELD,
- } from 'sentry/utils/discover/fields';
- import {generateLinkToEventInTraceView} from 'sentry/utils/discover/urls';
- import ViewReplayLink from 'sentry/utils/discover/viewReplayLink';
- import {isEmptyObject} from 'sentry/utils/object/isEmptyObject';
- import parseLinkHeader from 'sentry/utils/parseLinkHeader';
- import {VisuallyCompleteWithData} from 'sentry/utils/performanceForSentry';
- import CellAction, {Actions, updateQuery} from 'sentry/views/discover/table/cellAction';
- import type {TableColumn} from 'sentry/views/discover/table/types';
- import {COLUMN_TITLES} from '../../data';
- import {TraceViewSources} from '../../newTraceDetails/traceMetadataHeader';
- import Tab from '../tabs';
- import {
- generateProfileLink,
- generateReplayLink,
- generateTraceLink,
- normalizeSearchConditions,
- } from '../utils';
- import type {TitleProps} from './operationSort';
- import OperationSort from './operationSort';
- function shouldRenderColumn(containsSpanOpsBreakdown: boolean, col: string): boolean {
- if (containsSpanOpsBreakdown && isSpanOperationBreakdownField(col)) {
- return false;
- }
- if (
- col === 'profiler.id' ||
- col === 'thread.id' ||
- col === 'precise.start_ts' ||
- col === 'precise.finish_ts'
- ) {
- return false;
- }
- return true;
- }
- function OperationTitle({onClick}: TitleProps) {
- return (
- <div onClick={onClick}>
- <span>{t('operation duration')}</span>
- <StyledIconQuestion
- size="xs"
- position="top"
- title={t(
- `Span durations are summed over the course of an entire transaction. Any overlapping spans are only counted once.`
- )}
- />
- </div>
- );
- }
- type Props = {
- eventView: EventView;
- location: Location;
- organization: Organization;
- routes: RouteContextInterface['routes'];
- setError: (msg: string | undefined) => void;
- transactionName: string;
- columnTitles?: string[];
- customColumns?: ('attachments' | 'minidump')[];
- excludedTags?: string[];
- isEventLoading?: boolean;
- isRegressionIssue?: boolean;
- issueId?: string;
- projectSlug?: string;
- referrer?: string;
- };
- type State = {
- attachments: IssueAttachment[];
- hasMinidumps: boolean;
- lastFetchedCursor: string;
- widths: number[];
- };
- class EventsTable extends Component<Props, State> {
- state: State = {
- widths: [],
- lastFetchedCursor: '',
- attachments: [],
- hasMinidumps: false,
- };
- api = new Client();
- replayLinkGenerator = generateReplayLink(this.props.routes);
- handleCellAction = (column: TableColumn<keyof TableDataRow>) => {
- return (action: Actions, value: React.ReactText) => {
- const {eventView, location, organization, excludedTags} = this.props;
- trackAnalytics('performance_views.transactionEvents.cellaction', {
- organization,
- action,
- });
- const searchConditions = normalizeSearchConditions(eventView.query);
- if (excludedTags) {
- excludedTags.forEach(tag => {
- searchConditions.removeFilter(tag);
- });
- }
- updateQuery(searchConditions, action, column, value);
- browserHistory.push({
- pathname: location.pathname,
- query: {
- ...location.query,
- cursor: undefined,
- query: searchConditions.formatString(),
- },
- });
- };
- };
- renderBodyCell(
- tableData: TableData | null,
- column: TableColumn<keyof TableDataRow>,
- dataRow: TableDataRow
- ): React.ReactNode {
- const {eventView, organization, location, transactionName, projectSlug} = this.props;
- if (!tableData || !tableData.meta) {
- return dataRow[column.key];
- }
- const tableMeta = tableData.meta;
- const field = String(column.key);
- const fieldRenderer = getFieldRenderer(field, tableMeta);
- const rendered = fieldRenderer(dataRow, {
- organization,
- location,
- eventView,
- projectSlug,
- });
- const allowActions = [
- Actions.ADD,
- Actions.EXCLUDE,
- Actions.SHOW_GREATER_THAN,
- Actions.SHOW_LESS_THAN,
- ];
- if (['attachments', 'minidump'].includes(field)) {
- return rendered;
- }
- if (field === 'id' || field === 'trace') {
- const {issueId, isRegressionIssue} = this.props;
- const isIssue: boolean = !!issueId;
- let target: LocationDescriptor = {};
- const locationWithTab = {...location, query: {...location.query, tab: Tab.EVENTS}};
- // TODO: set referrer properly
- if (isIssue && !isRegressionIssue && field === 'id') {
- target.pathname = `/organizations/${organization.slug}/issues/${issueId}/events/${dataRow.id}/`;
- } else {
- if (field === 'id') {
- target = generateLinkToEventInTraceView({
- traceSlug: dataRow.trace?.toString(),
- projectSlug: dataRow['project.name']?.toString(),
- eventId: dataRow.id,
- timestamp: dataRow.timestamp,
- location: locationWithTab,
- organization,
- transactionName: transactionName,
- source: TraceViewSources.PERFORMANCE_TRANSACTION_SUMMARY,
- });
- } else {
- target = generateTraceLink(transactionName)(
- organization,
- dataRow,
- locationWithTab
- );
- }
- }
- return (
- <CellAction
- column={column}
- dataRow={dataRow}
- handleCellAction={this.handleCellAction(column)}
- allowActions={allowActions}
- >
- <Link to={target}>{rendered}</Link>
- </CellAction>
- );
- }
- if (field === 'replayId') {
- const target: LocationDescriptor | null = dataRow.replayId
- ? this.replayLinkGenerator(organization, dataRow, undefined)
- : null;
- return (
- <CellAction
- column={column}
- dataRow={dataRow}
- handleCellAction={this.handleCellAction(column)}
- allowActions={allowActions}
- >
- {target ? (
- <ViewReplayLink replayId={dataRow.replayId} to={target}>
- {rendered}
- </ViewReplayLink>
- ) : (
- rendered
- )}
- </CellAction>
- );
- }
- if (field === 'profile.id') {
- const target = generateProfileLink()(organization, dataRow, undefined);
- const transactionMeetsProfilingRequirements =
- typeof dataRow['transaction.duration'] === 'number' &&
- dataRow['transaction.duration'] > 20;
- return (
- <Tooltip
- title={
- !transactionMeetsProfilingRequirements && !dataRow['profile.id']
- ? t('Profiles require a transaction duration of at least 20ms')
- : null
- }
- >
- <CellAction
- column={column}
- dataRow={dataRow}
- handleCellAction={this.handleCellAction(column)}
- allowActions={allowActions}
- >
- <div>
- <LinkButton
- disabled={!target || isEmptyObject(target)}
- to={target || {}}
- size="xs"
- >
- <IconProfiling size="xs" />
- </LinkButton>
- </div>
- </CellAction>
- </Tooltip>
- );
- }
- const fieldName = getAggregateAlias(field);
- const value = dataRow[fieldName];
- if (tableMeta[fieldName] === 'integer' && typeof value === 'number' && value > 999) {
- return (
- <Tooltip
- title={value.toLocaleString()}
- containerDisplayMode="block"
- position="right"
- >
- <CellAction
- column={column}
- dataRow={dataRow}
- handleCellAction={this.handleCellAction(column)}
- allowActions={allowActions}
- >
- {rendered}
- </CellAction>
- </Tooltip>
- );
- }
- return (
- <CellAction
- column={column}
- dataRow={dataRow}
- handleCellAction={this.handleCellAction(column)}
- allowActions={allowActions}
- >
- {rendered}
- </CellAction>
- );
- }
- renderBodyCellWithData = (tableData: TableData | null) => {
- return (
- column: TableColumn<keyof TableDataRow>,
- dataRow: TableDataRow
- ): React.ReactNode => this.renderBodyCell(tableData, column, dataRow);
- };
- onSortClick(currentSortKind?: string, currentSortField?: string) {
- const {organization} = this.props;
- trackAnalytics('performance_views.transactionEvents.sort', {
- organization,
- field: currentSortField,
- direction: currentSortKind,
- });
- }
- renderHeadCell(
- tableMeta: TableData['meta'],
- column: TableColumn<keyof TableDataRow>,
- title: React.ReactNode
- ): React.ReactNode {
- const {eventView, location} = this.props;
- const align = fieldAlignment(column.name, column.type, tableMeta);
- const field = {field: column.name, width: column.width};
- function generateSortLink(): LocationDescriptorObject | undefined {
- if (!tableMeta) {
- return undefined;
- }
- const nextEventView = eventView.sortOnField(field, tableMeta);
- const queryStringObject = nextEventView.generateQueryStringObject();
- return {
- ...location,
- query: {...location.query, sort: queryStringObject.sort},
- };
- }
- const currentSort = eventView.sortForField(field, tableMeta);
- // EventId, TraceId, and ReplayId are technically sortable but we don't want to sort them here since sorting by a uuid value doesn't make sense
- const canSort =
- field.field !== 'id' &&
- field.field !== 'trace' &&
- field.field !== 'replayId' &&
- field.field !== SPAN_OP_RELATIVE_BREAKDOWN_FIELD &&
- isFieldSortable(field, tableMeta);
- const currentSortKind = currentSort ? currentSort.kind : undefined;
- const currentSortField = currentSort ? currentSort.field : undefined;
- if (field.field === SPAN_OP_RELATIVE_BREAKDOWN_FIELD) {
- title = (
- <OperationSort
- title={OperationTitle}
- eventView={eventView}
- tableMeta={tableMeta}
- location={location}
- />
- );
- }
- const sortLink = (
- <SortLink
- align={align}
- title={title || field.field}
- direction={currentSortKind}
- canSort={canSort}
- generateSortLink={generateSortLink}
- onClick={() => this.onSortClick(currentSortKind, currentSortField)}
- />
- );
- return sortLink;
- }
- renderHeadCellWithMeta = (tableMeta: TableData['meta']) => {
- const columnTitles = this.props.columnTitles ?? COLUMN_TITLES;
- return (column: TableColumn<keyof TableDataRow>, index: number): React.ReactNode =>
- this.renderHeadCell(tableMeta, column, columnTitles[index]);
- };
- handleResizeColumn = (columnIndex: number, nextColumn: GridColumn) => {
- const widths: number[] = [...this.state.widths];
- widths[columnIndex] = nextColumn.width
- ? Number(nextColumn.width)
- : COL_WIDTH_UNDEFINED;
- this.setState({...this.state, widths});
- };
- render() {
- const {eventView, organization, location, setError, referrer, isEventLoading} =
- this.props;
- const totalEventsView = eventView.clone();
- totalEventsView.sorts = [];
- totalEventsView.fields = [{field: 'count()', width: -1}];
- const {widths} = this.state;
- const containsSpanOpsBreakdown = !!eventView
- .getColumns()
- .find(
- (col: TableColumn<React.ReactText>) =>
- col.name === SPAN_OP_RELATIVE_BREAKDOWN_FIELD
- );
- const columnOrder = eventView
- .getColumns()
- .filter((col: TableColumn<React.ReactText>) =>
- shouldRenderColumn(containsSpanOpsBreakdown, col.name)
- )
- .map((col: TableColumn<React.ReactText>, i: number) => {
- if (typeof widths[i] === 'number') {
- return {...col, width: widths[i]};
- }
- return col;
- });
- if (
- this.props.customColumns?.includes('attachments') &&
- this.state.attachments.length
- ) {
- columnOrder.push({
- isSortable: false,
- key: 'attachments',
- name: 'attachments',
- type: 'never',
- column: {field: 'attachments', kind: 'field', alias: undefined},
- });
- }
- if (this.props.customColumns?.includes('minidump') && this.state.hasMinidumps) {
- columnOrder.push({
- isSortable: false,
- key: 'minidump',
- name: 'minidump',
- type: 'never',
- column: {field: 'minidump', kind: 'field', alias: undefined},
- });
- }
- const joinCustomData = ({data}: TableData) => {
- const attachmentsByEvent = groupBy(this.state.attachments, 'event_id');
- data.forEach(event => {
- event.attachments = (attachmentsByEvent[event.id] || []) as any;
- });
- };
- const fetchAttachments = async ({data}: TableData, cursor: string) => {
- const eventIds = data.map(value => value.id);
- const fetchOnlyMinidumps = !this.props.customColumns?.includes('attachments');
- const queries: string = [
- 'per_page=50',
- ...(fetchOnlyMinidumps ? ['types=event.minidump'] : []),
- ...eventIds.map(eventId => `event_id=${eventId}`),
- ].join('&');
- const res: IssueAttachment[] = await this.api.requestPromise(
- `/api/0/issues/${this.props.issueId}/attachments/?${queries}`
- );
- let hasMinidumps = false;
- res.forEach(attachment => {
- if (attachment.type === 'event.minidump') {
- hasMinidumps = true;
- }
- });
- this.setState({
- ...this.state,
- lastFetchedCursor: cursor,
- attachments: res,
- hasMinidumps,
- });
- };
- return (
- <div data-test-id="events-table">
- <DiscoverQuery
- eventView={totalEventsView}
- orgSlug={organization.slug}
- location={location}
- setError={error => setError(error?.message)}
- referrer="api.performance.transaction-summary"
- cursor="0:0:0"
- >
- {({isLoading: isTotalEventsLoading, tableData: table}) => {
- const totalEventsCount = table?.data[0]?.['count()'] ?? 0;
- return (
- <DiscoverQuery
- eventView={eventView}
- orgSlug={organization.slug}
- location={location}
- setError={error => setError(error?.message)}
- referrer={referrer || 'api.performance.transaction-events'}
- >
- {({pageLinks, isLoading: isDiscoverQueryLoading, tableData}) => {
- tableData ??= {data: []};
- const pageEventsCount = tableData?.data?.length ?? 0;
- const parsedPageLinks = parseLinkHeader(pageLinks);
- const cursor = parsedPageLinks?.next?.cursor;
- const shouldFetchAttachments: boolean =
- organization.features.includes('event-attachments') &&
- !!this.props.issueId &&
- !!cursor &&
- this.state.lastFetchedCursor !== cursor; // Only fetch on issue details page
- const paginationCaption =
- totalEventsCount && pageEventsCount
- ? tct('Showing [pageEventsCount] of [totalEventsCount] events', {
- pageEventsCount: pageEventsCount.toLocaleString(),
- totalEventsCount: totalEventsCount.toLocaleString(),
- })
- : undefined;
- if (shouldFetchAttachments) {
- fetchAttachments(tableData, cursor);
- }
- joinCustomData(tableData);
- return (
- <Fragment>
- <VisuallyCompleteWithData
- id="TransactionEvents-EventsTable"
- hasData={!!tableData?.data?.length}
- >
- <GridEditable
- isLoading={
- isTotalEventsLoading ||
- isDiscoverQueryLoading ||
- shouldFetchAttachments ||
- isEventLoading
- }
- data={tableData?.data ?? []}
- columnOrder={columnOrder}
- columnSortBy={eventView.getSorts()}
- grid={{
- onResizeColumn: this.handleResizeColumn,
- renderHeadCell: this.renderHeadCellWithMeta(
- tableData?.meta
- ) as any,
- renderBodyCell: this.renderBodyCellWithData(tableData) as any,
- }}
- />
- </VisuallyCompleteWithData>
- <Pagination
- disabled={isDiscoverQueryLoading}
- caption={paginationCaption}
- pageLinks={pageLinks}
- />
- </Fragment>
- );
- }}
- </DiscoverQuery>
- );
- }}
- </DiscoverQuery>
- </div>
- );
- }
- }
- const StyledIconQuestion = styled(QuestionTooltip)`
- position: relative;
- top: 1px;
- left: 4px;
- `;
- export default EventsTable;
|