Skip to content

Commit b1e358f

Browse files
d-csclaude
andcommitted
feat(webapp): surface buffered state in admin-only details for run detail panel
Admins triaging a run from the dashboard need a single-glance answer to "is this row in PG yet or sitting in the mollifier buffer?". The existing Admin only section already carries Worker queue / Trace ID / Span ID / Task event store; add a Buffered yes/no field at the top of the same block. Gates off the `isBuffered` flag already on SpanRun (`false` on the PG branch, `true` on the buffered synth). No customer-facing change — only renders when `useHasAdminAccess()` is true. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 8e02aef commit b1e358f

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

  • apps/webapp/app/routes/resources.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam.spans.$spanParam

apps/webapp/app/routes/resources.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam.spans.$spanParam/route.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1022,6 +1022,10 @@ function RunBody({
10221022
<Paragraph spacing variant="small" className="text-yellow-500">
10231023
Admin only
10241024
</Paragraph>
1025+
<Property.Item>
1026+
<Property.Label>Buffered</Property.Label>
1027+
<Property.Value>{run.isBuffered ? "Yes" : "No"}</Property.Value>
1028+
</Property.Item>
10251029
<Property.Item>
10261030
<Property.Label>Worker queue</Property.Label>
10271031
<Property.Value>{run.workerQueue}</Property.Value>

0 commit comments

Comments
 (0)