diff --git a/src/ui/features/host-metrics/cards/managers/ProcessInspectorCard.tsx b/src/ui/features/host-metrics/cards/managers/ProcessInspectorCard.tsx
index 4869ab1b..0231032b 100644
--- a/src/ui/features/host-metrics/cards/managers/ProcessInspectorCard.tsx
+++ b/src/ui/features/host-metrics/cards/managers/ProcessInspectorCard.tsx
@@ -164,7 +164,8 @@ export function ProcessInspectorCard({ hostId }: { hostId: number | null }) {
{depth > 0 && (
└
)}
- {p.command}
+ {/* `comm` is capped at 15 chars by the kernel; the full command line is in args. */}
+ {p.args || p.command}