123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- import type {ComponentProps} from 'react';
- import styled from '@emotion/styled';
- import type {Location} from 'history';
- import GridEditable, {
- COL_WIDTH_UNDEFINED,
- type GridColumnHeader,
- } from 'sentry/components/gridEditable';
- import {t} from 'sentry/locale';
- import type {Organization} from 'sentry/types/organization';
- import type {EventsMetaType} from 'sentry/utils/discover/eventView';
- import {getFieldRenderer} from 'sentry/utils/discover/fieldRenderers';
- import {useLocation} from 'sentry/utils/useLocation';
- import useOrganization from 'sentry/utils/useOrganization';
- import {CacheHitMissCell} from 'sentry/views/insights/cache/components/tables/cacheHitMissCell';
- import {renderHeadCell} from 'sentry/views/insights/common/components/tableCells/renderHeadCell';
- import {SpanIdCell} from 'sentry/views/insights/common/components/tableCells/spanIdCell';
- import type {SpanIndexedResponse} from 'sentry/views/insights/types';
- import {ModuleName, SpanIndexedField} from 'sentry/views/insights/types';
- import {TraceViewSources} from 'sentry/views/performance/newTraceDetails/traceHeader/breadcrumbs';
- type DataRowKeys =
- | SpanIndexedField.PROJECT
- | SpanIndexedField.TRANSACTION_ID
- | SpanIndexedField.TRACE
- | SpanIndexedField.TIMESTAMP
- | SpanIndexedField.ID
- | SpanIndexedField.SPAN_DESCRIPTION
- | SpanIndexedField.CACHE_HIT
- | SpanIndexedField.CACHE_ITEM_SIZE;
- type ColumnKeys =
- | SpanIndexedField.ID
- | SpanIndexedField.SPAN_DESCRIPTION
- | SpanIndexedField.CACHE_HIT
- | SpanIndexedField.CACHE_ITEM_SIZE
- | 'transaction.duration';
- export type DataRow = Pick<SpanIndexedResponse, DataRowKeys> & {
- 'transaction.duration': number;
- };
- type Column = GridColumnHeader<ColumnKeys>;
- const COLUMN_ORDER: Column[] = [
- {
- key: SpanIndexedField.ID,
- name: t('Span ID'),
- width: 150,
- },
- {
- key: SpanIndexedField.SPAN_DESCRIPTION,
- name: t('Span Description'),
- width: COL_WIDTH_UNDEFINED,
- },
- {
- key: 'transaction.duration',
- name: t('Transaction Duration'),
- width: COL_WIDTH_UNDEFINED,
- },
- {
- key: SpanIndexedField.CACHE_ITEM_SIZE,
- name: t('Value Size'),
- width: COL_WIDTH_UNDEFINED,
- },
- {
- key: SpanIndexedField.CACHE_HIT,
- name: t('Status'),
- width: COL_WIDTH_UNDEFINED,
- },
- ];
- interface Props {
- data: DataRow[];
- isLoading: boolean;
- error?: Error | null;
- highlightedSpanId?: string;
- meta?: EventsMetaType;
- onSampleMouseOut?: ComponentProps<typeof GridEditable>['onRowMouseOut'];
- onSampleMouseOver?: ComponentProps<typeof GridEditable>['onRowMouseOver'];
- }
- export function SpanSamplesTable({
- data,
- isLoading,
- error,
- meta,
- onSampleMouseOver,
- onSampleMouseOut,
- highlightedSpanId,
- }: Props) {
- const location = useLocation();
- const organization = useOrganization();
- return (
- <GridEditable
- aria-label={t('Span Samples')}
- isLoading={isLoading}
- error={error}
- data={data}
- columnOrder={COLUMN_ORDER}
- columnSortBy={[]}
- grid={{
- renderHeadCell: col =>
- renderHeadCell({
- column: col,
- location,
- }),
- renderBodyCell: (column, row) =>
- renderBodyCell(column, row, meta, location, organization),
- }}
- highlightedRowKey={data.findIndex(row => row.span_id === highlightedSpanId)}
- onRowMouseOver={onSampleMouseOver}
- onRowMouseOut={onSampleMouseOut}
- />
- );
- }
- function renderBodyCell(
- column: Column,
- row: DataRow,
- meta: EventsMetaType | undefined,
- location: Location,
- organization: Organization
- ) {
- if (column.key === SpanIndexedField.ID) {
- return (
- <SpanIdCell
- moduleName={ModuleName.CACHE}
- projectSlug={row.project}
- traceId={row.trace}
- timestamp={row.timestamp}
- transactionId={row[SpanIndexedField.TRANSACTION_ID]}
- spanId={row[SpanIndexedField.ID]}
- source={TraceViewSources.CACHES_MODULE}
- location={location}
- />
- );
- }
- if (column.key === SpanIndexedField.SPAN_DESCRIPTION) {
- return (
- <SpanDescriptionCell>{row[SpanIndexedField.SPAN_DESCRIPTION]}</SpanDescriptionCell>
- );
- }
- if (column.key === SpanIndexedField.CACHE_HIT) {
- return <CacheHitMissCell hit={row[column.key]} />;
- }
- if (!meta?.fields) {
- return row[column.key];
- }
- const renderer = getFieldRenderer(column.key, meta.fields, false);
- return renderer(row, {
- location,
- organization,
- unit: meta.units?.[column.key],
- });
- }
- const SpanDescriptionCell = styled('span')`
- word-break: break-word;
- `;
|