feat(ui): show agent ID in exchange header info row
Some checks failed
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m0s
CI / docker (push) Has been cancelled
CI / deploy (push) Has been cancelled
CI / deploy-feature (push) Has been cancelled

This commit is contained in:
hsiegeln
2026-03-28 15:07:58 +01:00
parent e934b31164
commit 9f0c2e1225

View File

@@ -61,6 +61,12 @@ export function ExchangeHeader({ detail }: ExchangeHeaderProps) {
<span className={styles.route}>{detail.routeId}</span>
<span className={styles.app}>{detail.applicationName}</span>
<span className={styles.duration}>{formatDuration(detail.durationMs)}</span>
{detail.agentId && (
<>
<span className={styles.separator} />
<MonoText size="xs">{detail.agentId}</MonoText>
</>
)}
</div>
{/* Correlation chain — only when multiple correlated exchanges exist */}