Skip to content

Commit dbe22f5

Browse files
mjqClaude Opus 4.6
andcommitted
ref(perf): Reorder columns in EAP sampled events table
Move Span ID to the first column and Trace ID after Total Duration for a more natural reading order: Span ID, User, HTTP Method, Total Duration, Trace ID, Timestamp, Replay, Profile. Co-Authored-By: Claude Opus 4.6 <noreply@example.com>
1 parent f6bba2f commit dbe22f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

static/app/views/performance/eap/overviewSpansTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ type OverviewSpansColumn = GridColumnHeader<
6565
>;
6666

6767
const BASE_COLUMN_ORDER: OverviewSpansColumn[] = [
68-
{key: 'trace', name: t('Trace ID'), width: COL_WIDTH_UNDEFINED},
6968
{key: 'span_id', name: t('Span ID'), width: COL_WIDTH_UNDEFINED},
7069
{key: 'user.display', name: t('User'), width: COL_WIDTH_UNDEFINED},
7170
{key: 'request.method', name: t('HTTP Method'), width: COL_WIDTH_UNDEFINED},
7271
{key: 'span.duration', name: t('Total Duration'), width: COL_WIDTH_UNDEFINED},
72+
{key: 'trace', name: t('Trace ID'), width: COL_WIDTH_UNDEFINED},
7373
{key: 'timestamp', name: t('Timestamp'), width: COL_WIDTH_UNDEFINED},
7474
];
7575

0 commit comments

Comments
 (0)