From 7825aae274d62ba2b2bdcd5790ffe7f789e2354e Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Thu, 16 Apr 2026 14:18:48 +0200 Subject: [PATCH] feat: show CPU usage in expanded GroupCard meta headers Add max CPU percentage to the meta row of both the full expanded view and the overlay expanded card, consistent with compact cards. Co-Authored-By: Claude Opus 4.6 (1M context) --- ui/src/pages/AgentHealth/AgentHealth.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/src/pages/AgentHealth/AgentHealth.tsx b/ui/src/pages/AgentHealth/AgentHealth.tsx index 60f3b35e..802ab096 100644 --- a/ui/src/pages/AgentHealth/AgentHealth.tsx +++ b/ui/src/pages/AgentHealth/AgentHealth.tsx @@ -663,6 +663,7 @@ export default function AgentHealth() {
{group.totalTps.toFixed(1)} msg/s {group.totalActiveRoutes}/{group.totalRoutes} routes + {group.maxCpu >= 0 && {(group.maxCpu * 100).toFixed(0)}% cpu} {group.totalTps.toFixed(1)} msg/s {group.totalActiveRoutes}/{group.totalRoutes} routes + {group.maxCpu >= 0 && {(group.maxCpu * 100).toFixed(0)}% cpu}