feat(trace): 在请求链路追踪中记录并展示首字时间(TTFB)

将 first_byte_time_ms 添加到候选记录的 extra_data 中,
并在前端时间线组件中展示该指标。
This commit is contained in:
fawney19
2026-01-14 16:41:58 +08:00
parent ec3c5994d9
commit 97d66a8d0c
3 changed files with 32 additions and 18 deletions

View File

@@ -175,6 +175,13 @@
{{ currentAttempt.finished_at ? formatTime(currentAttempt.finished_at) : '进行中' }}
</span>
</div>
<div
v-if="currentAttempt.extra_data?.first_byte_time_ms != null"
class="info-item"
>
<span class="info-label">首字 (TTFB)</span>
<span class="info-value mono">{{ formatLatency(currentAttempt.extra_data.first_byte_time_ms) }}</span>
</div>
<div
v-if="currentAttempt.key_name || currentAttempt.key_id"
class="info-item"