|
@@ -30,6 +30,7 @@ const {HTTP_RESPONSE_CONTENT_LENGTH} = SpanMetricsField;
|
|
|
|
|
|
type Keys =
|
|
|
| 'transaction_id'
|
|
|
+ | 'span_id'
|
|
|
| 'profile_id'
|
|
|
| 'timestamp'
|
|
|
| 'duration'
|
|
@@ -40,8 +41,8 @@ export type SamplesTableColumnHeader = GridColumnHeader<Keys>;
|
|
|
|
|
|
export const DEFAULT_COLUMN_ORDER: SamplesTableColumnHeader[] = [
|
|
|
{
|
|
|
- key: 'transaction_id',
|
|
|
- name: 'Event ID',
|
|
|
+ key: 'span_id',
|
|
|
+ name: 'Span ID',
|
|
|
width: COL_WIDTH_UNDEFINED,
|
|
|
},
|
|
|
{
|
|
@@ -125,7 +126,7 @@ export function SpanSamplesTable({
|
|
|
onMouseEnter: () => handleMouseOverBodyCell(row),
|
|
|
};
|
|
|
|
|
|
- if (column.key === 'transaction_id') {
|
|
|
+ if (column.key === 'span_id') {
|
|
|
return (
|
|
|
<Link
|
|
|
to={generateLinkToEventInTraceView({
|
|
@@ -145,7 +146,7 @@ export function SpanSamplesTable({
|
|
|
})}
|
|
|
{...commonProps}
|
|
|
>
|
|
|
- {row['transaction.id'].slice(0, 8)}
|
|
|
+ {row.span_id}
|
|
|
</Link>
|
|
|
);
|
|
|
}
|