Skip to content
Draft
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
9 changes: 9 additions & 0 deletions .changeset/gpu-metrics-infra-panel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
'@hyperdx/app': minor
---

Show GPU utilization and GPU memory utilization charts in the log/span side
panel Infrastructure section when `hw.gpu.*` metrics (OTel hardware semconv)
exist for the correlated host/node. Multiple GPUs on a host render as separate
series grouped by `hw.id`. The section is fully hidden when no GPU metrics are
present and partially rendered when only one metric is available.
5 changes: 5 additions & 0 deletions packages/app/src/ChartUtils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,11 @@ export const K8S_MEM_NUMBER_FORMAT: NumberFormat = {
output: 'byte',
};

export const GPU_UTILIZATION_NUMBER_FORMAT: NumberFormat = {
output: 'percent',
mantissa: 1,
};

function inferValueColumns(
meta: Array<{ name: string; type: string }>,
excluded: Set<string>,
Expand Down
Loading