Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/single-drawer-navigation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@hyperdx/app": minor
---

Redesign the event side panel into a single right-hand drawer with breadcrumb-stack navigation. Logs, traces, and sessions now navigate in-place (surrounding-context drilldowns, log → trace via a new "View Trace" action, and session → event) instead of stacking layered drawers, with a unified `SidePanelBreadcrumbs` trail that is restorable from the URL. The header gains a metadata row (timestamp, service, duration, status, Copy Trace ID) and the session drawer's close button now closes the entire panel.
2 changes: 0 additions & 2 deletions packages/app/src/NamespaceDetailsSidePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,6 @@ function NamespaceLogs({
<Card.Section p="md" py="sm" h={CHART_HEIGHT}>
<DBSqlRowTableWithSideBar
sourceId={logSource.id}
isNestedPanel
breadcrumbPath={[{ label: 'Namespace Details' }]}
config={{
...logSource,
where: _where,
Expand Down
6 changes: 2 additions & 4 deletions packages/app/src/NodeDetailsSidePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ function NodeLogs({
{ label: 'Errors', value: 'error' },
]}
/>
{/*
{/*
<Link
href={`/search?q=${encodeURIComponent(_where)}`}
passHref
Expand All @@ -186,16 +186,14 @@ function NodeLogs({
<Anchor size="xs" c="dimmed">
Search <IconExternalLink size={12} style={{ display: 'inline' }} />
</Anchor>
</Link>
</Link>
*/}
</Flex>
</Flex>
</Card.Section>
<Card.Section p="md" py="sm" h={CHART_HEIGHT}>
<DBSqlRowTableWithSideBar
sourceId={logSource.id}
isNestedPanel
breadcrumbPath={[{ label: 'Node Details' }]}
config={{
...logSource,
where: _where,
Expand Down
3 changes: 0 additions & 3 deletions packages/app/src/PodDetailsSidePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,6 @@ function PodLogs({
sourceId={logSource.id}
config={tableConfig}
isLive={false}
isNestedPanel
breadcrumbPath={[{ label: 'Pods' }]}
queryKeyPrefix="k8s-dashboard-pod-logs"
/>
</Card.Section>
Expand Down Expand Up @@ -460,7 +458,6 @@ export default function PodDetailsSidePanel({
rowId={rowId}
aliasWith={aliasWith}
onClose={handleCloseRowSidePanel}
isNestedPanel={true}
/>
)}
</div>
Expand Down
Loading
Loading