123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- import {Fragment} from 'react';
- import type {Location} from 'history';
- import * as qs from 'query-string';
- import type {GridColumnHeader} from 'sentry/components/gridEditable';
- import GridEditable, {COL_WIDTH_UNDEFINED} from 'sentry/components/gridEditable';
- import Link from 'sentry/components/links/link';
- import type {CursorHandler} from 'sentry/components/pagination';
- import Pagination from 'sentry/components/pagination';
- import {t} from 'sentry/locale';
- import type {Organization} from 'sentry/types/organization';
- import {browserHistory} from 'sentry/utils/browserHistory';
- import type {EventsMetaType} from 'sentry/utils/discover/eventView';
- import {getFieldRenderer} from 'sentry/utils/discover/fieldRenderers';
- import type {Sort} from 'sentry/utils/discover/fields';
- import {useLocation} from 'sentry/utils/useLocation';
- import useOrganization from 'sentry/utils/useOrganization';
- import {renderHeadCell} from 'sentry/views/insights/common/components/tableCells/renderHeadCell';
- import {OverflowEllipsisTextContainer} from 'sentry/views/insights/common/components/textAlign';
- import {useModuleURL} from 'sentry/views/insights/common/utils/useModuleURL';
- import {QueryParameterNames} from 'sentry/views/insights/common/views/queryParameters';
- import {
- DataTitles,
- getThroughputTitle,
- } from 'sentry/views/insights/common/views/spans/types';
- import type {SpanMetricsResponse} from 'sentry/views/insights/types';
- import {SpanMetricsField} from 'sentry/views/insights/types';
- type Row = Pick<
- SpanMetricsResponse,
- | 'transaction'
- | 'transaction.method'
- | 'spm()'
- | 'avg(span.self_time)'
- | 'sum(span.self_time)'
- | 'time_spent_percentage()'
- >;
- type Column = GridColumnHeader<
- 'transaction' | 'spm()' | 'avg(span.self_time)' | 'time_spent_percentage()'
- >;
- const COLUMN_ORDER: Column[] = [
- {
- key: 'transaction',
- name: t('Found In'),
- width: COL_WIDTH_UNDEFINED,
- },
- {
- key: 'spm()',
- name: getThroughputTitle('db'),
- width: COL_WIDTH_UNDEFINED,
- },
- {
- key: `avg(${SpanMetricsField.SPAN_SELF_TIME})`,
- name: DataTitles.avg,
- width: COL_WIDTH_UNDEFINED,
- },
- {
- key: 'time_spent_percentage()',
- name: DataTitles.timeSpent,
- width: COL_WIDTH_UNDEFINED,
- },
- ];
- const SORTABLE_FIELDS = [
- 'avg(span.self_time)',
- 'spm()',
- 'time_spent_percentage()',
- ] as const;
- type ValidSort = Sort & {
- field: (typeof SORTABLE_FIELDS)[number];
- };
- export function isAValidSort(sort: Sort): sort is ValidSort {
- return (SORTABLE_FIELDS as unknown as string[]).includes(sort.field);
- }
- interface Props {
- data: Row[];
- isLoading: boolean;
- sort: ValidSort;
- span: Pick<SpanMetricsResponse, SpanMetricsField.SPAN_GROUP | SpanMetricsField.SPAN_OP>;
- error?: Error | null;
- meta?: EventsMetaType;
- pageLinks?: string;
- }
- export function QueryTransactionsTable({
- data,
- isLoading,
- error,
- meta,
- pageLinks,
- sort,
- span,
- }: Props) {
- const moduleURL = useModuleURL('db');
- const location = useLocation();
- const organization = useOrganization();
- const handleCursor: CursorHandler = (newCursor, pathname, query) => {
- browserHistory.push({
- pathname,
- query: {...query, [QueryParameterNames.TRANSACTIONS_CURSOR]: newCursor},
- });
- };
- return (
- <Fragment>
- <GridEditable
- aria-label={t('Transactions')}
- isLoading={isLoading}
- error={error}
- data={data}
- columnOrder={COLUMN_ORDER}
- columnSortBy={[
- {
- key: sort.field,
- order: sort.kind,
- },
- ]}
- grid={{
- renderHeadCell: col =>
- renderHeadCell({
- column: col,
- sort,
- location,
- sortParameterName: QueryParameterNames.TRANSACTIONS_SORT,
- }),
- renderBodyCell: (column, row) =>
- renderBodyCell(moduleURL, column, row, meta, span, location, organization),
- }}
- />
- <Pagination pageLinks={pageLinks} onCursor={handleCursor} />
- </Fragment>
- );
- }
- function renderBodyCell(
- moduleURL: string,
- column: Column,
- row: Row,
- meta: EventsMetaType | undefined,
- span: Pick<SpanMetricsResponse, SpanMetricsField.SPAN_GROUP | SpanMetricsField.SPAN_OP>,
- location: Location,
- organization: Organization
- ) {
- if (column.key === 'transaction') {
- const label =
- row['transaction.method'] && !row.transaction.startsWith(row['transaction.method'])
- ? `${row['transaction.method']} ${row.transaction}`
- : row.transaction;
- const pathname = `${moduleURL}/spans/span/${encodeURIComponent(span[SpanMetricsField.SPAN_GROUP])}`;
- const query: {[key: string]: string | undefined} = {
- ...location.query,
- transaction: row.transaction,
- transactionMethod: row['transaction.method'],
- };
- return (
- <OverflowEllipsisTextContainer>
- <Link to={`${pathname}?${qs.stringify(query)}`}>{label}</Link>
- </OverflowEllipsisTextContainer>
- );
- }
- if (!meta || !meta?.fields) {
- return row[column.key];
- }
- const renderer = getFieldRenderer(column.key, meta.fields, false);
- const rendered = renderer(
- {...row, 'span.op': span['span.op']},
- {
- location,
- organization,
- unit: meta.units?.[column.key],
- }
- );
- return rendered;
- }
|