feat: migrate traces/taps and route recording into Deployments config
Some checks failed
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m19s
CI / deploy (push) Has been cancelled
CI / deploy-feature (push) Has been cancelled
CI / docker (push) Has been cancelled

ConfigSubTab now uses inner tabs (Agent / Infrastructure):
- Agent: observability settings, compress success, traces & taps table,
  route recording toggles
- Infrastructure: container resources, exposed ports, environment variables

This completes the Config tab consolidation — all features from the
standalone Config page now live in the Deployments tab.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-08 18:09:12 +02:00
parent 0a0733def7
commit 967156d41b
2 changed files with 281 additions and 109 deletions

View File

@@ -380,3 +380,55 @@
opacity: 0.3;
cursor: default;
}
/* Traces & Taps */
.sectionSummary {
font-size: 12px;
color: var(--text-muted);
margin-bottom: 8px;
display: block;
}
.hint {
color: var(--text-muted);
font-size: 12px;
font-style: italic;
}
.routeLabel {
font-size: 12px;
color: var(--text-muted);
}
.tapBadges {
display: flex;
gap: 4px;
flex-wrap: wrap;
}
.tapBadgeLink {
background: none;
border: none;
padding: 0;
cursor: pointer;
border-radius: 4px;
transition: opacity 0.15s;
}
.tapBadgeLink:hover {
opacity: 0.75;
}
.removeBtn {
background: none;
border: none;
color: var(--text-muted);
cursor: pointer;
font-size: 16px;
padding: 0 4px;
line-height: 1;
}
.removeBtn:hover {
color: var(--error);
}