The execution-related "group" concept actually represents the application name. Rename all Java fields, API parameters, and frontend types from groupName→applicationName and group→application for clarity. - Java records: ExecutionSummary, ExecutionDetail, ExecutionDocument, ExecutionRecord, ProcessorRecord - API params: SearchRequest.group→application, SearchController @RequestParam group→application - Services: IngestionService, DetailService, SearchIndexer, StatsStore - Frontend: schema.d.ts, Dashboard, ExchangeDetail, RouteDetail, executions query hooks Database column names (group_name) and OpenSearch field names are unchanged — only the API-facing Java/TS field names are renamed. RBAC group references (groups table, GroupRepository, GroupsTab) are a separate domain concept and are NOT affected by this change. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1566 lines
52 KiB
HTML
1566 lines
52 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Cameleer3 — Usability Expert Mock</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
|
|
<!--
|
|
=====================================================================
|
|
UX DECISIONS & INFORMATION ARCHITECTURE RATIONALE
|
|
=====================================================================
|
|
|
|
1. INFORMATION HIERARCHY (what operators see first)
|
|
- Level 1 (Glanceable): Top health bar with 4 key metrics (total, success
|
|
rate, error count, avg latency). These answer "is the system OK?" in
|
|
under 2 seconds. The error count uses rose color and pulses when > 0.
|
|
- Level 2 (Actionable): Filter bar with status pills + time presets.
|
|
Smart defaults: last 1h, all statuses, sorted newest-first. Active
|
|
filters are shown as removable tags so the operator always knows
|
|
what's filtered.
|
|
- Level 3 (Scannable): Execution list table with color-coded status
|
|
pills, duration bars, and app badges. Failed rows get a subtle rose
|
|
left-border so failures are visible during fast scrolling.
|
|
- Level 4 (Detail on demand): Right detail panel that opens when a row
|
|
is selected. Shows execution metadata, processor timeline (Gantt-
|
|
style), exchange snapshot, and error details without navigating away.
|
|
|
|
2. NAVIGATION FLOW (system overview -> specific problem in min clicks)
|
|
- Click 0: Dashboard loads with health metrics + recent executions
|
|
- Click 1: Click status pill "Failed" or click error count card
|
|
-> table filters to errors only
|
|
- Click 2: Click a row -> detail panel slides in from right
|
|
- Click 3: Click "View Diagram" in detail panel -> route diagram
|
|
with execution overlay (only if needed)
|
|
Total: 2 clicks from "everything is fine" to "here's what failed"
|
|
|
|
3. FILTER/SEARCH PATTERNS
|
|
- Quick filters: Status pills (All/Completed/Failed/Running) with
|
|
live counts. Single-click toggle, visually active state.
|
|
- Time presets: 15m/1h/6h/24h/7d pills (operator rarely needs
|
|
custom range for triage). Custom range available but secondary.
|
|
- Full-text search: Inline search bar that searches across
|
|
correlation IDs, route IDs, error messages. Opens command palette
|
|
on Ctrl+K for power users.
|
|
- Active filter tags: Shown below the filter bar as removable pills
|
|
so operators always know what's filtered and can clear quickly.
|
|
|
|
4. SCAN-ABILITY
|
|
- Failed rows: Rose left-border accent + red status pill = visible
|
|
in < 1 second during fast scroll
|
|
- Duration bars: Visual bar + number. Slow durations use amber/rose
|
|
colors. Anomalous durations stand out without reading numbers.
|
|
- Relative timestamps: "2m ago", "15m ago" — faster to parse than
|
|
absolute timestamps for recent events. Absolute on hover.
|
|
- Alternating subtle backgrounds for table rows (not used — the
|
|
border-bottom approach from the existing design is cleaner)
|
|
|
|
5. CONTEXT PRESERVATION (master-detail pattern)
|
|
- Selecting a row opens the detail panel on the right WITHOUT
|
|
navigating away. The execution list remains visible and scrollable.
|
|
- The detail panel uses tabs (Overview/Processors/Exchange/Errors)
|
|
for progressive disclosure.
|
|
- Breadcrumb-style context at the top of the detail panel shows
|
|
the path: App > Route > Execution ID.
|
|
- Closing the panel returns focus to the list. Keyboard: Escape
|
|
closes, arrow keys navigate rows, Enter opens detail.
|
|
|
|
6. KEYBOARD SHORTCUTS
|
|
- Ctrl+K: Command palette (search anything)
|
|
- Escape: Close detail panel / clear search
|
|
- Arrow Up/Down: Navigate execution list
|
|
- Enter: Open detail for selected row
|
|
- F: Toggle failed filter
|
|
- R: Refresh data
|
|
- ?: Show keyboard shortcuts overlay
|
|
|
|
7. PROGRESSIVE DISCLOSURE
|
|
- Health cards: Show number + trend. Hover for more context.
|
|
- Table rows: Key columns only (status, app, route, time, duration).
|
|
Click for full detail.
|
|
- Detail panel tabs: Overview first (most common need), then
|
|
Processors (Gantt), Exchange (payload), Errors (stack traces).
|
|
- Error details: Show error class + message. Expandable for full
|
|
stack trace.
|
|
|
|
8. COMPARISON UX
|
|
- Duration bars provide instant visual comparison across rows.
|
|
- Stats cards show trend arrows (up/down vs previous period).
|
|
- The Processors tab in detail shows a Gantt timeline so you can
|
|
see which processor is the bottleneck.
|
|
|
|
=====================================================================
|
|
-->
|
|
<style>
|
|
/* ─── Reset ─── */
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
|
|
/* ─── Design Tokens (matching existing Cameleer3 theme) ─── */
|
|
:root {
|
|
--bg-deep: #060a13;
|
|
--bg-base: #0a0e17;
|
|
--bg-surface: #111827;
|
|
--bg-raised: #1a2332;
|
|
--bg-hover: #1e2d3d;
|
|
--border: #1e2d3d;
|
|
--border-subtle: #152030;
|
|
--text-primary: #e2e8f0;
|
|
--text-secondary: #8b9cb6;
|
|
--text-muted: #4a5e7a;
|
|
--amber: #f0b429;
|
|
--amber-dim: #b8860b;
|
|
--amber-glow: rgba(240, 180, 41, 0.15);
|
|
--cyan: #22d3ee;
|
|
--cyan-dim: #0e7490;
|
|
--cyan-glow: rgba(34, 211, 238, 0.12);
|
|
--rose: #f43f5e;
|
|
--rose-dim: #9f1239;
|
|
--rose-glow: rgba(244, 63, 94, 0.12);
|
|
--green: #10b981;
|
|
--green-glow: rgba(16, 185, 129, 0.12);
|
|
--blue: #3b82f6;
|
|
--purple: #a855f7;
|
|
--font-body: 'DM Sans', system-ui, sans-serif;
|
|
--font-mono: 'JetBrains Mono', 'Fira Code', monospace;
|
|
--radius-sm: 6px;
|
|
--radius-md: 10px;
|
|
--radius-lg: 14px;
|
|
--topnav-bg: rgba(6, 10, 19, 0.85);
|
|
}
|
|
|
|
body {
|
|
background: var(--bg-deep);
|
|
color: var(--text-primary);
|
|
font-family: var(--font-body);
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
min-height: 100vh;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
/* Background treatment */
|
|
body::before {
|
|
content: '';
|
|
position: fixed;
|
|
inset: 0;
|
|
background:
|
|
radial-gradient(ellipse 800px 400px at 20% 20%, rgba(240, 180, 41, 0.03), transparent),
|
|
radial-gradient(ellipse 600px 600px at 80% 80%, rgba(34, 211, 238, 0.02), transparent);
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
}
|
|
|
|
/* Scrollbar */
|
|
::-webkit-scrollbar { width: 6px; height: 6px; }
|
|
::-webkit-scrollbar-track { background: transparent; }
|
|
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
|
|
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
|
|
|
|
/* ─── Animations ─── */
|
|
@keyframes fadeIn {
|
|
from { opacity: 0; transform: translateY(8px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
@keyframes livePulse {
|
|
0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
|
|
50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
|
|
}
|
|
@keyframes errorPulse {
|
|
0%, 100% { box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.3); }
|
|
50% { box-shadow: 0 0 0 4px rgba(244, 63, 94, 0); }
|
|
}
|
|
@keyframes slideInRight {
|
|
from { opacity: 0; transform: translateX(24px); }
|
|
to { opacity: 1; transform: translateX(0); }
|
|
}
|
|
@keyframes fadeInUp {
|
|
from { opacity: 0; transform: translateY(6px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
.animate-in { animation: fadeIn 0.3s ease-out both; }
|
|
|
|
/* ─── Top Navigation ─── */
|
|
.topnav {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 100;
|
|
background: var(--topnav-bg);
|
|
backdrop-filter: blur(20px) saturate(1.2);
|
|
border-bottom: 1px solid var(--border-subtle);
|
|
padding: 0 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
height: 56px;
|
|
gap: 16px;
|
|
}
|
|
|
|
.hamburger {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 32px;
|
|
height: 32px;
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-sm);
|
|
background: none;
|
|
color: var(--text-muted);
|
|
cursor: pointer;
|
|
transition: all 0.15s;
|
|
flex-shrink: 0;
|
|
}
|
|
.hamburger:hover { color: var(--text-primary); border-color: var(--text-muted); background: var(--bg-raised); }
|
|
|
|
.logo {
|
|
font-family: var(--font-mono);
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
color: var(--amber);
|
|
letter-spacing: -0.5px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
flex-shrink: 0;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.search-bar {
|
|
flex: 1;
|
|
max-width: 480px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 6px 12px;
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-sm);
|
|
background: var(--bg-raised);
|
|
cursor: pointer;
|
|
transition: all 0.15s;
|
|
}
|
|
.search-bar:hover { border-color: var(--text-muted); }
|
|
.search-icon { color: var(--text-muted); flex-shrink: 0; font-size: 14px; }
|
|
.search-placeholder { flex: 1; font-size: 13px; color: var(--text-muted); }
|
|
.search-kbd {
|
|
font-family: var(--font-mono);
|
|
font-size: 10px;
|
|
color: var(--text-muted);
|
|
background: var(--bg-surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 3px;
|
|
padding: 1px 5px;
|
|
}
|
|
|
|
.nav-right {
|
|
margin-left: auto;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
.env-badge {
|
|
font-family: var(--font-mono);
|
|
font-size: 11px;
|
|
padding: 4px 10px;
|
|
border-radius: 99px;
|
|
background: var(--green-glow);
|
|
color: var(--green);
|
|
border: 1px solid rgba(16, 185, 129, 0.2);
|
|
font-weight: 500;
|
|
}
|
|
.nav-link {
|
|
font-family: var(--font-mono);
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
color: var(--text-muted);
|
|
text-decoration: none;
|
|
padding: 4px 10px;
|
|
border-radius: 99px;
|
|
border: 1px solid var(--border);
|
|
transition: all 0.15s;
|
|
}
|
|
.nav-link:hover { color: var(--text-primary); border-color: var(--text-muted); }
|
|
.nav-link.active { color: var(--amber); border-color: rgba(240, 180, 41, 0.3); background: var(--amber-glow); }
|
|
.user-info {
|
|
font-size: 12px;
|
|
color: var(--text-muted);
|
|
font-family: var(--font-mono);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
/* ─── Layout ─── */
|
|
.layout {
|
|
display: flex;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* ─── Sidebar ─── */
|
|
.sidebar {
|
|
width: 240px;
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: var(--bg-surface);
|
|
border-right: 1px solid var(--border-subtle);
|
|
height: calc(100vh - 56px);
|
|
position: sticky;
|
|
top: 56px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.sidebar-search {
|
|
padding: 12px;
|
|
border-bottom: 1px solid var(--border-subtle);
|
|
}
|
|
.sidebar-search input {
|
|
width: 100%;
|
|
padding: 6px 10px;
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-sm);
|
|
background: var(--bg-raised);
|
|
color: var(--text-primary);
|
|
font-size: 12px;
|
|
font-family: var(--font-body);
|
|
outline: none;
|
|
transition: border-color 0.15s;
|
|
}
|
|
.sidebar-search input::placeholder { color: var(--text-muted); }
|
|
.sidebar-search input:focus { border-color: var(--amber); }
|
|
|
|
.app-list {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
padding: 8px 0;
|
|
}
|
|
|
|
.app-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
width: 100%;
|
|
padding: 8px 16px;
|
|
border: none;
|
|
background: none;
|
|
color: var(--text-secondary);
|
|
font-size: 13px;
|
|
font-family: var(--font-body);
|
|
cursor: pointer;
|
|
transition: all 0.1s;
|
|
text-align: left;
|
|
}
|
|
.app-item:hover { background: var(--bg-hover); color: var(--text-primary); }
|
|
.app-item.active { background: var(--amber-glow); color: var(--amber); }
|
|
|
|
.health-dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
flex-shrink: 0;
|
|
}
|
|
.dot-live { background: var(--green); }
|
|
.dot-stale { background: var(--amber); }
|
|
.dot-dead { background: var(--text-muted); }
|
|
|
|
.app-info { flex: 1; min-width: 0; }
|
|
.app-name { font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.app-meta { font-size: 11px; color: var(--text-muted); }
|
|
|
|
.all-icon {
|
|
width: 8px;
|
|
height: 8px;
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
color: var(--text-muted);
|
|
}
|
|
.app-item.active .all-icon { color: var(--amber); }
|
|
|
|
.sidebar-divider {
|
|
height: 1px;
|
|
background: var(--border-subtle);
|
|
margin: 4px 12px;
|
|
}
|
|
|
|
.sidebar-section-label {
|
|
padding: 12px 16px 4px;
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.sidebar-bottom {
|
|
border-top: 1px solid var(--border-subtle);
|
|
padding: 8px 0;
|
|
}
|
|
.bottom-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
width: 100%;
|
|
padding: 8px 16px;
|
|
border: none;
|
|
background: none;
|
|
color: var(--text-muted);
|
|
font-size: 12px;
|
|
font-family: var(--font-body);
|
|
cursor: pointer;
|
|
transition: all 0.1s;
|
|
text-decoration: none;
|
|
}
|
|
.bottom-item:hover { background: var(--bg-hover); color: var(--text-primary); }
|
|
.bottom-icon { font-size: 14px; flex-shrink: 0; width: 16px; text-align: center; }
|
|
|
|
/* ─── Main Content ─── */
|
|
.main-content {
|
|
flex: 1;
|
|
min-width: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: calc(100vh - 56px);
|
|
}
|
|
|
|
/* ─── Health Overview Strip ─── */
|
|
.health-strip {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 12px;
|
|
padding: 20px 24px 0;
|
|
animation: fadeIn 0.3s ease-out both;
|
|
}
|
|
|
|
.stat-card {
|
|
background: var(--bg-surface);
|
|
border: 1px solid var(--border-subtle);
|
|
border-radius: var(--radius-md);
|
|
padding: 14px 18px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
transition: border-color 0.2s;
|
|
cursor: pointer;
|
|
}
|
|
.stat-card:hover { border-color: var(--border); }
|
|
.stat-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0; left: 0; right: 0;
|
|
height: 2px;
|
|
}
|
|
.stat-card.amber::before { background: linear-gradient(90deg, var(--amber), transparent); }
|
|
.stat-card.green::before { background: linear-gradient(90deg, var(--green), transparent); }
|
|
.stat-card.rose::before { background: linear-gradient(90deg, var(--rose), transparent); }
|
|
.stat-card.cyan::before { background: linear-gradient(90deg, var(--cyan), transparent); }
|
|
.stat-card.rose.has-errors { animation: errorPulse 2s ease-in-out infinite; }
|
|
|
|
.stat-label {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.8px;
|
|
color: var(--text-muted);
|
|
margin-bottom: 6px;
|
|
}
|
|
.stat-value {
|
|
font-family: var(--font-mono);
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
letter-spacing: -1px;
|
|
}
|
|
.stat-card.amber .stat-value { color: var(--amber); }
|
|
.stat-card.green .stat-value { color: var(--green); }
|
|
.stat-card.rose .stat-value { color: var(--rose); }
|
|
.stat-card.cyan .stat-value { color: var(--cyan); }
|
|
|
|
.stat-trend {
|
|
font-size: 11px;
|
|
font-family: var(--font-mono);
|
|
margin-top: 2px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
}
|
|
.trend-up { color: var(--rose); }
|
|
.trend-down { color: var(--green); }
|
|
.trend-neutral { color: var(--text-muted); }
|
|
.stat-subtitle {
|
|
font-size: 11px;
|
|
color: var(--text-muted);
|
|
margin-top: 2px;
|
|
}
|
|
|
|
/* ─── Filter Bar ─── */
|
|
.filter-section {
|
|
padding: 16px 24px 0;
|
|
animation: fadeIn 0.3s ease-out 0.05s both;
|
|
}
|
|
|
|
.filter-bar {
|
|
background: var(--bg-surface);
|
|
border: 1px solid var(--border-subtle);
|
|
border-radius: var(--radius-lg);
|
|
padding: 14px 20px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
.filter-row {
|
|
display: flex;
|
|
gap: 10px;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.filter-group {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
.filter-label {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
color: var(--text-muted);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.separator {
|
|
width: 1px;
|
|
height: 24px;
|
|
background: var(--border);
|
|
margin: 0 4px;
|
|
}
|
|
|
|
/* Chips */
|
|
.chip {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
padding: 5px 12px;
|
|
background: var(--bg-raised);
|
|
border: 1px solid var(--border);
|
|
border-radius: 99px;
|
|
font-size: 12px;
|
|
color: var(--text-secondary);
|
|
cursor: pointer;
|
|
transition: all 0.15s;
|
|
white-space: nowrap;
|
|
user-select: none;
|
|
}
|
|
.chip:hover { border-color: var(--text-muted); color: var(--text-primary); }
|
|
.chip.active { background: var(--amber-glow); border-color: var(--amber-dim); color: var(--amber); }
|
|
.chip.active.chip-green { background: var(--green-glow); border-color: rgba(16, 185, 129, 0.3); color: var(--green); }
|
|
.chip.active.chip-rose { background: var(--rose-glow); border-color: rgba(244, 63, 94, 0.3); color: var(--rose); }
|
|
.chip.active.chip-blue { background: rgba(59, 130, 246, 0.12); border-color: rgba(59, 130, 246, 0.3); color: var(--blue); }
|
|
|
|
.chip-dot {
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
background: currentColor;
|
|
}
|
|
.chip-count {
|
|
font-family: var(--font-mono);
|
|
font-size: 10px;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
/* Active filter tags */
|
|
.active-filters {
|
|
display: flex;
|
|
gap: 6px;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
}
|
|
.filter-tag {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 4px 10px;
|
|
background: var(--amber-glow);
|
|
border: 1px solid rgba(240, 180, 41, 0.2);
|
|
border-radius: 99px;
|
|
font-size: 12px;
|
|
color: var(--amber);
|
|
font-family: var(--font-mono);
|
|
}
|
|
.filter-tag-remove {
|
|
cursor: pointer;
|
|
opacity: 0.5;
|
|
font-size: 14px;
|
|
line-height: 1;
|
|
background: none;
|
|
border: none;
|
|
color: inherit;
|
|
}
|
|
.filter-tag-remove:hover { opacity: 1; }
|
|
.clear-all {
|
|
font-size: 11px;
|
|
color: var(--text-muted);
|
|
cursor: pointer;
|
|
padding: 4px 8px;
|
|
background: none;
|
|
border: none;
|
|
}
|
|
.clear-all:hover { color: var(--rose); }
|
|
|
|
/* ─── Results Area (split: list + detail) ─── */
|
|
.results-area {
|
|
flex: 1;
|
|
display: flex;
|
|
gap: 0;
|
|
padding: 16px 24px 24px;
|
|
min-height: 0;
|
|
animation: fadeIn 0.3s ease-out 0.1s both;
|
|
}
|
|
|
|
/* ─── Execution List Panel ─── */
|
|
.list-panel {
|
|
flex: 1;
|
|
min-width: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
transition: flex 0.25s ease;
|
|
}
|
|
.list-panel.with-detail { flex: 0 0 55%; }
|
|
|
|
.results-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 8px;
|
|
padding: 0 4px;
|
|
}
|
|
.results-count {
|
|
font-size: 12px;
|
|
color: var(--text-muted);
|
|
font-family: var(--font-mono);
|
|
}
|
|
.results-count strong { color: var(--text-secondary); }
|
|
|
|
.live-toggle {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 12px;
|
|
font-family: var(--font-mono);
|
|
font-weight: 500;
|
|
background: none;
|
|
border: 1px solid var(--border);
|
|
border-radius: 6px;
|
|
padding: 6px 14px;
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
color: var(--green);
|
|
border-color: var(--green);
|
|
}
|
|
.live-dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background: var(--green);
|
|
animation: livePulse 2s ease-in-out infinite;
|
|
}
|
|
|
|
/* Table */
|
|
.table-wrap {
|
|
background: var(--bg-surface);
|
|
border: 1px solid var(--border-subtle);
|
|
border-radius: var(--radius-lg);
|
|
overflow: hidden;
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.table-scroll {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-size: 13px;
|
|
}
|
|
|
|
thead {
|
|
background: var(--bg-raised);
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 2;
|
|
}
|
|
|
|
th {
|
|
padding: 11px 16px;
|
|
text-align: left;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.8px;
|
|
color: var(--text-muted);
|
|
user-select: none;
|
|
white-space: nowrap;
|
|
border-bottom: 1px solid var(--border);
|
|
cursor: pointer;
|
|
transition: color 0.15s;
|
|
}
|
|
th:hover { color: var(--text-secondary); }
|
|
th.sorted { color: var(--amber); }
|
|
.sort-arrow { font-size: 9px; margin-left: 4px; opacity: 0.4; }
|
|
th.sorted .sort-arrow { opacity: 1; }
|
|
|
|
tr.exec-row {
|
|
border-bottom: 1px solid var(--border-subtle);
|
|
transition: background 0.1s;
|
|
cursor: pointer;
|
|
position: relative;
|
|
}
|
|
tr.exec-row:last-child { border-bottom: none; }
|
|
tr.exec-row:hover { background: var(--bg-raised); }
|
|
tr.exec-row.selected { background: var(--amber-glow); }
|
|
|
|
/* Failed row accent */
|
|
tr.exec-row.row-failed { border-left: 3px solid var(--rose); }
|
|
tr.exec-row.row-running { border-left: 3px solid var(--blue); }
|
|
tr.exec-row.row-completed { border-left: 3px solid transparent; }
|
|
|
|
td {
|
|
padding: 11px 16px;
|
|
vertical-align: middle;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/* Status pill in table */
|
|
.status-pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
padding: 3px 10px;
|
|
border-radius: 99px;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.3px;
|
|
}
|
|
.status-dot {
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
background: currentColor;
|
|
}
|
|
.pill-completed { background: var(--green-glow); color: var(--green); }
|
|
.pill-failed { background: var(--rose-glow); color: var(--rose); }
|
|
.pill-running { background: rgba(59, 130, 246, 0.12); color: var(--blue); }
|
|
.pill-running .status-dot { animation: livePulse 1.5s ease-in-out infinite; }
|
|
|
|
/* Duration bar */
|
|
.duration-cell {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
.dur-bar {
|
|
width: 50px;
|
|
height: 4px;
|
|
background: var(--bg-base);
|
|
border-radius: 2px;
|
|
overflow: hidden;
|
|
}
|
|
.dur-fill {
|
|
height: 100%;
|
|
border-radius: 2px;
|
|
transition: width 0.3s;
|
|
}
|
|
.dur-fast { background: var(--green); }
|
|
.dur-medium { background: var(--amber); }
|
|
.dur-slow { background: var(--rose); }
|
|
.dur-text {
|
|
font-family: var(--font-mono);
|
|
font-size: 12px;
|
|
color: var(--text-secondary);
|
|
min-width: 48px;
|
|
}
|
|
|
|
/* App badge */
|
|
.app-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
padding: 2px 8px;
|
|
background: var(--bg-raised);
|
|
border: 1px solid var(--border);
|
|
border-radius: 4px;
|
|
font-size: 11px;
|
|
font-family: var(--font-mono);
|
|
color: var(--text-secondary);
|
|
}
|
|
.app-badge-dot {
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.route-name {
|
|
color: var(--text-primary);
|
|
font-weight: 500;
|
|
}
|
|
.correlation-id {
|
|
font-family: var(--font-mono);
|
|
font-size: 12px;
|
|
color: var(--text-muted);
|
|
max-width: 120px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.time-cell {
|
|
font-family: var(--font-mono);
|
|
font-size: 12px;
|
|
}
|
|
.time-relative { color: var(--text-secondary); }
|
|
.time-absolute {
|
|
font-size: 10px;
|
|
color: var(--text-muted);
|
|
display: block;
|
|
}
|
|
|
|
/* Pagination */
|
|
.pagination {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 4px;
|
|
padding: 12px;
|
|
border-top: 1px solid var(--border-subtle);
|
|
}
|
|
.page-btn {
|
|
width: 32px;
|
|
height: 32px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: var(--bg-surface);
|
|
border: 1px solid var(--border-subtle);
|
|
border-radius: var(--radius-sm);
|
|
color: var(--text-secondary);
|
|
font-family: var(--font-mono);
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
transition: all 0.15s;
|
|
}
|
|
.page-btn:hover { border-color: var(--border); background: var(--bg-raised); }
|
|
.page-btn.active { background: var(--amber-glow); border-color: var(--amber-dim); color: var(--amber); }
|
|
.page-btn.disabled { opacity: 0.3; cursor: default; }
|
|
|
|
/* ─── Detail Panel ─── */
|
|
.detail-panel {
|
|
width: 0;
|
|
overflow: hidden;
|
|
transition: width 0.25s ease, opacity 0.2s ease;
|
|
opacity: 0;
|
|
border-left: 1px solid transparent;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.detail-panel.open {
|
|
width: 45%;
|
|
opacity: 1;
|
|
border-left-color: var(--border-subtle);
|
|
animation: slideInRight 0.25s ease-out both;
|
|
}
|
|
|
|
.detail-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 16px 20px;
|
|
border-bottom: 1px solid var(--border-subtle);
|
|
background: var(--bg-surface);
|
|
flex-shrink: 0;
|
|
}
|
|
.detail-breadcrumb {
|
|
font-size: 12px;
|
|
color: var(--text-muted);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
.detail-breadcrumb .bc-sep { color: var(--text-muted); font-size: 10px; }
|
|
.detail-breadcrumb .bc-current { color: var(--amber); font-weight: 500; }
|
|
|
|
.detail-close {
|
|
width: 28px;
|
|
height: 28px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: none;
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-sm);
|
|
color: var(--text-muted);
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
transition: all 0.15s;
|
|
}
|
|
.detail-close:hover { color: var(--text-primary); border-color: var(--text-muted); }
|
|
|
|
/* Detail tabs */
|
|
.detail-tabs {
|
|
display: flex;
|
|
border-bottom: 1px solid var(--border-subtle);
|
|
background: var(--bg-surface);
|
|
flex-shrink: 0;
|
|
}
|
|
.detail-tab {
|
|
padding: 10px 18px;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
color: var(--text-muted);
|
|
cursor: pointer;
|
|
border-bottom: 2px solid transparent;
|
|
transition: all 0.15s;
|
|
background: none;
|
|
border-top: none;
|
|
border-left: none;
|
|
border-right: none;
|
|
font-family: var(--font-body);
|
|
}
|
|
.detail-tab:hover { color: var(--text-secondary); }
|
|
.detail-tab.active {
|
|
color: var(--amber);
|
|
border-bottom-color: var(--amber);
|
|
}
|
|
|
|
/* Detail body */
|
|
.detail-body {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
padding: 20px;
|
|
background: var(--bg-base);
|
|
}
|
|
|
|
.detail-section {
|
|
margin-bottom: 20px;
|
|
}
|
|
.detail-section-title {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.8px;
|
|
color: var(--text-muted);
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.detail-grid {
|
|
display: grid;
|
|
grid-template-columns: 120px 1fr;
|
|
gap: 8px 12px;
|
|
font-size: 13px;
|
|
}
|
|
.detail-key {
|
|
color: var(--text-muted);
|
|
font-size: 12px;
|
|
}
|
|
.detail-val {
|
|
color: var(--text-primary);
|
|
font-family: var(--font-mono);
|
|
font-size: 12px;
|
|
word-break: break-all;
|
|
}
|
|
.detail-val.error-text { color: var(--rose); }
|
|
|
|
/* Processor timeline (Gantt-style) */
|
|
.processor-timeline {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
}
|
|
.proc-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
font-size: 12px;
|
|
}
|
|
.proc-name {
|
|
width: 120px;
|
|
text-align: right;
|
|
color: var(--text-secondary);
|
|
font-family: var(--font-mono);
|
|
font-size: 11px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
flex-shrink: 0;
|
|
}
|
|
.proc-bar-bg {
|
|
flex: 1;
|
|
height: 18px;
|
|
background: var(--bg-raised);
|
|
border-radius: 3px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.proc-bar-fill {
|
|
position: absolute;
|
|
top: 0;
|
|
height: 100%;
|
|
border-radius: 3px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
padding-right: 6px;
|
|
font-family: var(--font-mono);
|
|
font-size: 9px;
|
|
color: rgba(255,255,255,0.8);
|
|
min-width: 24px;
|
|
}
|
|
.proc-bar-fill.proc-ok { background: rgba(16, 185, 129, 0.5); }
|
|
.proc-bar-fill.proc-slow { background: rgba(240, 180, 41, 0.5); }
|
|
.proc-bar-fill.proc-error { background: rgba(244, 63, 94, 0.5); }
|
|
|
|
.proc-dur {
|
|
width: 50px;
|
|
font-family: var(--font-mono);
|
|
font-size: 11px;
|
|
color: var(--text-muted);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* Error block */
|
|
.error-block {
|
|
background: var(--bg-raised);
|
|
border: 1px solid rgba(244, 63, 94, 0.2);
|
|
border-left: 3px solid var(--rose);
|
|
border-radius: var(--radius-sm);
|
|
padding: 14px 16px;
|
|
}
|
|
.error-class {
|
|
font-family: var(--font-mono);
|
|
font-size: 12px;
|
|
color: var(--rose);
|
|
font-weight: 600;
|
|
margin-bottom: 4px;
|
|
}
|
|
.error-message {
|
|
font-family: var(--font-mono);
|
|
font-size: 11px;
|
|
color: var(--text-secondary);
|
|
line-height: 1.6;
|
|
}
|
|
.error-expand {
|
|
margin-top: 8px;
|
|
font-size: 11px;
|
|
color: var(--text-muted);
|
|
cursor: pointer;
|
|
background: none;
|
|
border: none;
|
|
font-family: var(--font-mono);
|
|
}
|
|
.error-expand:hover { color: var(--amber); }
|
|
|
|
/* Detail actions */
|
|
.detail-actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
padding: 14px 20px;
|
|
border-top: 1px solid var(--border-subtle);
|
|
background: var(--bg-surface);
|
|
flex-shrink: 0;
|
|
}
|
|
.action-btn {
|
|
padding: 7px 16px;
|
|
border-radius: var(--radius-sm);
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.15s;
|
|
font-family: var(--font-body);
|
|
}
|
|
.action-btn.primary {
|
|
background: var(--amber);
|
|
color: var(--bg-deep);
|
|
border: none;
|
|
}
|
|
.action-btn.primary:hover { background: #d4a017; }
|
|
.action-btn.secondary {
|
|
background: none;
|
|
border: 1px solid var(--border);
|
|
color: var(--text-secondary);
|
|
}
|
|
.action-btn.secondary:hover { border-color: var(--text-muted); color: var(--text-primary); }
|
|
|
|
/* ─── Keyboard Shortcuts Hint ─── */
|
|
.shortcuts-bar {
|
|
position: fixed;
|
|
bottom: 16px;
|
|
right: 16px;
|
|
display: flex;
|
|
gap: 12px;
|
|
z-index: 50;
|
|
animation: fadeIn 0.5s ease-out 0.5s both;
|
|
}
|
|
.shortcut-hint {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
font-size: 11px;
|
|
color: var(--text-muted);
|
|
background: var(--bg-surface);
|
|
border: 1px solid var(--border-subtle);
|
|
border-radius: var(--radius-sm);
|
|
padding: 5px 10px;
|
|
}
|
|
.shortcut-hint kbd {
|
|
font-family: var(--font-mono);
|
|
font-size: 10px;
|
|
background: var(--bg-raised);
|
|
border: 1px solid var(--border);
|
|
border-radius: 3px;
|
|
padding: 1px 5px;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
/* ─── Command Palette Overlay (shown as suggestion) ─── */
|
|
.palette-overlay {
|
|
display: none;
|
|
}
|
|
|
|
/* Row keyboard focus */
|
|
tr.exec-row:focus-visible {
|
|
outline: 2px solid var(--amber);
|
|
outline-offset: -2px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- ════════════════════════════════════════════════════ -->
|
|
<!-- TOP NAVIGATION -->
|
|
<!-- ════════════════════════════════════════════════════ -->
|
|
<nav class="topnav">
|
|
<button class="hamburger" title="Toggle sidebar">☰</button>
|
|
<a href="#" class="logo">
|
|
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2"/><path d="M8 12c0-2 1-4 4-4s4 2 4 4-1 4-4 4-4-2-4-4"/></svg>
|
|
cameleer3
|
|
</a>
|
|
<div class="search-bar" title="Press Ctrl+K to search">
|
|
<span class="search-icon">🔍</span>
|
|
<span class="search-placeholder">Search executions, routes, correlation IDs...</span>
|
|
<kbd class="search-kbd">Ctrl K</kbd>
|
|
</div>
|
|
<div class="nav-right">
|
|
<span class="env-badge">PROD</span>
|
|
<a href="#" class="nav-link active">Executions</a>
|
|
<a href="#" class="nav-link">Routes</a>
|
|
<a href="#" class="nav-link">API</a>
|
|
<span class="user-info">admin</span>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- ════════════════════════════════════════════════════ -->
|
|
<!-- LAYOUT: SIDEBAR + MAIN -->
|
|
<!-- ════════════════════════════════════════════════════ -->
|
|
<div class="layout">
|
|
|
|
<!-- ─── Sidebar: App / Group Navigation ─── -->
|
|
<aside class="sidebar">
|
|
<div class="sidebar-search">
|
|
<input type="text" placeholder="Filter apps...">
|
|
</div>
|
|
<div class="app-list">
|
|
<button class="app-item active">
|
|
<span class="all-icon">*</span>
|
|
<div class="app-info">
|
|
<div class="app-name">All Applications</div>
|
|
<div class="app-meta">6 apps, 14 agents</div>
|
|
</div>
|
|
</button>
|
|
<div class="sidebar-divider"></div>
|
|
<button class="app-item">
|
|
<span class="health-dot dot-live"></span>
|
|
<div class="app-info">
|
|
<div class="app-name">order-service</div>
|
|
<div class="app-meta">3 agents · 12 routes</div>
|
|
</div>
|
|
</button>
|
|
<button class="app-item">
|
|
<span class="health-dot dot-live"></span>
|
|
<div class="app-info">
|
|
<div class="app-name">payment-gateway</div>
|
|
<div class="app-meta">2 agents · 8 routes</div>
|
|
</div>
|
|
</button>
|
|
<button class="app-item">
|
|
<span class="health-dot dot-stale"></span>
|
|
<div class="app-info">
|
|
<div class="app-name">inventory-sync</div>
|
|
<div class="app-meta">2 agents · 5 routes</div>
|
|
</div>
|
|
</button>
|
|
<button class="app-item">
|
|
<span class="health-dot dot-live"></span>
|
|
<div class="app-info">
|
|
<div class="app-name">notification-hub</div>
|
|
<div class="app-meta">3 agents · 6 routes</div>
|
|
</div>
|
|
</button>
|
|
<button class="app-item">
|
|
<span class="health-dot dot-live"></span>
|
|
<div class="app-info">
|
|
<div class="app-name">shipping-tracker</div>
|
|
<div class="app-meta">2 agents · 4 routes</div>
|
|
</div>
|
|
</button>
|
|
<button class="app-item">
|
|
<span class="health-dot dot-dead"></span>
|
|
<div class="app-info">
|
|
<div class="app-name">legacy-bridge</div>
|
|
<div class="app-meta">2 agents · 3 routes</div>
|
|
</div>
|
|
</button>
|
|
</div>
|
|
<div class="sidebar-bottom">
|
|
<div class="sidebar-divider"></div>
|
|
<a href="#" class="bottom-item">
|
|
<span class="bottom-icon">⚙</span>
|
|
<span>Admin</span>
|
|
</a>
|
|
<a href="#" class="bottom-item">
|
|
<span class="bottom-icon">📚</span>
|
|
<span>API Docs</span>
|
|
</a>
|
|
</div>
|
|
</aside>
|
|
|
|
<!-- ─── Main Content Area ─── -->
|
|
<main class="main-content">
|
|
|
|
<!-- ═══ Level 1: Health Overview (glanceable) ═══ -->
|
|
<div class="health-strip">
|
|
<div class="stat-card amber" title="Click to see all executions">
|
|
<div class="stat-label">Executions (1h)</div>
|
|
<div class="stat-value">2,847</div>
|
|
<div class="stat-trend trend-neutral">↔ steady vs prev hour</div>
|
|
</div>
|
|
<div class="stat-card green">
|
|
<div class="stat-label">Success Rate</div>
|
|
<div class="stat-value">97.3%</div>
|
|
<div class="stat-trend trend-down">▼ 0.4% from 97.7%</div>
|
|
</div>
|
|
<div class="stat-card rose has-errors" title="Click to filter failed">
|
|
<div class="stat-label">Errors</div>
|
|
<div class="stat-value">77</div>
|
|
<div class="stat-trend trend-up">▲ +12 vs prev hour</div>
|
|
</div>
|
|
<div class="stat-card cyan">
|
|
<div class="stat-label">Avg Latency</div>
|
|
<div class="stat-value">142ms</div>
|
|
<div class="stat-trend trend-neutral">↔ P95: 380ms</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ═══ Level 2: Filters (actionable) ═══ -->
|
|
<div class="filter-section">
|
|
<div class="filter-bar">
|
|
<div class="filter-row">
|
|
<!-- Status pills -->
|
|
<div class="filter-group">
|
|
<span class="filter-label">Status</span>
|
|
<span class="chip active">All <span class="chip-count">2,847</span></span>
|
|
<span class="chip chip-green"><span class="chip-dot"></span> Completed <span class="chip-count">2,761</span></span>
|
|
<span class="chip chip-rose"><span class="chip-dot"></span> Failed <span class="chip-count">77</span></span>
|
|
<span class="chip chip-blue"><span class="chip-dot"></span> Running <span class="chip-count">9</span></span>
|
|
</div>
|
|
|
|
<div class="separator"></div>
|
|
|
|
<!-- Time presets -->
|
|
<div class="filter-group">
|
|
<span class="filter-label">Time</span>
|
|
<span class="chip">15m</span>
|
|
<span class="chip active">1h</span>
|
|
<span class="chip">6h</span>
|
|
<span class="chip">24h</span>
|
|
<span class="chip">7d</span>
|
|
<span class="chip">Custom</span>
|
|
</div>
|
|
</div>
|
|
<!-- Active filter tags row -->
|
|
<div class="active-filters">
|
|
<span class="filter-tag">time: last 1 hour <button class="filter-tag-remove">×</button></span>
|
|
<span class="filter-tag">sort: newest first <button class="filter-tag-remove">×</button></span>
|
|
<button class="clear-all">Clear all</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ═══ Level 3: Results (scannable list + detail) ═══ -->
|
|
<div class="results-area">
|
|
|
|
<!-- Execution List -->
|
|
<div class="list-panel with-detail">
|
|
<div class="results-header">
|
|
<span class="results-count">Showing <strong>1–25</strong> of <strong>2,847</strong> executions</span>
|
|
<button class="live-toggle" title="Auto-refresh every 5s">
|
|
<span class="live-dot"></span>
|
|
LIVE
|
|
</button>
|
|
</div>
|
|
|
|
<div class="table-wrap">
|
|
<div class="table-scroll">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th style="width:90px">Status</th>
|
|
<th>Application</th>
|
|
<th>Route</th>
|
|
<th>Correlation ID</th>
|
|
<th class="sorted">Started <span class="sort-arrow">▼</span></th>
|
|
<th>Duration</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr class="exec-row row-failed selected" tabindex="0">
|
|
<td><span class="status-pill pill-failed"><span class="status-dot"></span>FAILED</span></td>
|
|
<td><span class="app-badge"><span class="app-badge-dot dot-live" style="background:var(--green)"></span>order-service</span></td>
|
|
<td><span class="route-name">processOrderRoute</span></td>
|
|
<td><span class="correlation-id">ord-2024-78291</span></td>
|
|
<td class="time-cell"><span class="time-relative">2m ago</span><span class="time-absolute">14:58:12 UTC</span></td>
|
|
<td><div class="duration-cell"><div class="dur-bar"><div class="dur-fill dur-slow" style="width:85%"></div></div><span class="dur-text">1,247ms</span></div></td>
|
|
</tr>
|
|
<tr class="exec-row row-running" tabindex="0">
|
|
<td><span class="status-pill pill-running"><span class="status-dot"></span>RUNNING</span></td>
|
|
<td><span class="app-badge"><span class="app-badge-dot" style="background:var(--green)"></span>payment-gateway</span></td>
|
|
<td><span class="route-name">chargePaymentRoute</span></td>
|
|
<td><span class="correlation-id">pay-2024-18734</span></td>
|
|
<td class="time-cell"><span class="time-relative">30s ago</span><span class="time-absolute">14:59:42 UTC</span></td>
|
|
<td><div class="duration-cell"><div class="dur-bar"><div class="dur-fill dur-medium" style="width:45%"></div></div><span class="dur-text">~30s</span></div></td>
|
|
</tr>
|
|
<tr class="exec-row row-completed" tabindex="0">
|
|
<td><span class="status-pill pill-completed"><span class="status-dot"></span>OK</span></td>
|
|
<td><span class="app-badge"><span class="app-badge-dot" style="background:var(--green)"></span>order-service</span></td>
|
|
<td><span class="route-name">validateOrderRoute</span></td>
|
|
<td><span class="correlation-id">ord-2024-78290</span></td>
|
|
<td class="time-cell"><span class="time-relative">3m ago</span><span class="time-absolute">14:57:04 UTC</span></td>
|
|
<td><div class="duration-cell"><div class="dur-bar"><div class="dur-fill dur-fast" style="width:15%"></div></div><span class="dur-text">89ms</span></div></td>
|
|
</tr>
|
|
<tr class="exec-row row-completed" tabindex="0">
|
|
<td><span class="status-pill pill-completed"><span class="status-dot"></span>OK</span></td>
|
|
<td><span class="app-badge"><span class="app-badge-dot" style="background:var(--green)"></span>notification-hub</span></td>
|
|
<td><span class="route-name">sendEmailRoute</span></td>
|
|
<td><span class="correlation-id">ntf-2024-44821</span></td>
|
|
<td class="time-cell"><span class="time-relative">4m ago</span><span class="time-absolute">14:56:33 UTC</span></td>
|
|
<td><div class="duration-cell"><div class="dur-bar"><div class="dur-fill dur-fast" style="width:20%"></div></div><span class="dur-text">112ms</span></div></td>
|
|
</tr>
|
|
<tr class="exec-row row-completed" tabindex="0">
|
|
<td><span class="status-pill pill-completed"><span class="status-dot"></span>OK</span></td>
|
|
<td><span class="app-badge"><span class="app-badge-dot" style="background:var(--amber)"></span>inventory-sync</span></td>
|
|
<td><span class="route-name">syncStockRoute</span></td>
|
|
<td><span class="correlation-id">inv-2024-93102</span></td>
|
|
<td class="time-cell"><span class="time-relative">5m ago</span><span class="time-absolute">14:55:11 UTC</span></td>
|
|
<td><div class="duration-cell"><div class="dur-bar"><div class="dur-fill dur-medium" style="width:55%"></div></div><span class="dur-text">423ms</span></div></td>
|
|
</tr>
|
|
<tr class="exec-row row-failed" tabindex="0">
|
|
<td><span class="status-pill pill-failed"><span class="status-dot"></span>FAILED</span></td>
|
|
<td><span class="app-badge"><span class="app-badge-dot" style="background:var(--green)"></span>payment-gateway</span></td>
|
|
<td><span class="route-name">refundPaymentRoute</span></td>
|
|
<td><span class="correlation-id">pay-2024-18720</span></td>
|
|
<td class="time-cell"><span class="time-relative">7m ago</span><span class="time-absolute">14:53:28 UTC</span></td>
|
|
<td><div class="duration-cell"><div class="dur-bar"><div class="dur-fill dur-slow" style="width:70%"></div></div><span class="dur-text">892ms</span></div></td>
|
|
</tr>
|
|
<tr class="exec-row row-completed" tabindex="0">
|
|
<td><span class="status-pill pill-completed"><span class="status-dot"></span>OK</span></td>
|
|
<td><span class="app-badge"><span class="app-badge-dot" style="background:var(--green)"></span>shipping-tracker</span></td>
|
|
<td><span class="route-name">updateTrackingRoute</span></td>
|
|
<td><span class="correlation-id">shp-2024-67433</span></td>
|
|
<td class="time-cell"><span class="time-relative">8m ago</span><span class="time-absolute">14:52:15 UTC</span></td>
|
|
<td><div class="duration-cell"><div class="dur-bar"><div class="dur-fill dur-fast" style="width:12%"></div></div><span class="dur-text">67ms</span></div></td>
|
|
</tr>
|
|
<tr class="exec-row row-completed" tabindex="0">
|
|
<td><span class="status-pill pill-completed"><span class="status-dot"></span>OK</span></td>
|
|
<td><span class="app-badge"><span class="app-badge-dot" style="background:var(--green)"></span>order-service</span></td>
|
|
<td><span class="route-name">processOrderRoute</span></td>
|
|
<td><span class="correlation-id">ord-2024-78289</span></td>
|
|
<td class="time-cell"><span class="time-relative">10m ago</span><span class="time-absolute">14:50:03 UTC</span></td>
|
|
<td><div class="duration-cell"><div class="dur-bar"><div class="dur-fill dur-fast" style="width:25%"></div></div><span class="dur-text">156ms</span></div></td>
|
|
</tr>
|
|
<tr class="exec-row row-completed" tabindex="0">
|
|
<td><span class="status-pill pill-completed"><span class="status-dot"></span>OK</span></td>
|
|
<td><span class="app-badge"><span class="app-badge-dot" style="background:var(--green)"></span>order-service</span></td>
|
|
<td><span class="route-name">validateOrderRoute</span></td>
|
|
<td><span class="correlation-id">ord-2024-78288</span></td>
|
|
<td class="time-cell"><span class="time-relative">12m ago</span><span class="time-absolute">14:48:41 UTC</span></td>
|
|
<td><div class="duration-cell"><div class="dur-bar"><div class="dur-fill dur-fast" style="width:18%"></div></div><span class="dur-text">98ms</span></div></td>
|
|
</tr>
|
|
<tr class="exec-row row-completed" tabindex="0">
|
|
<td><span class="status-pill pill-completed"><span class="status-dot"></span>OK</span></td>
|
|
<td><span class="app-badge"><span class="app-badge-dot" style="background:var(--green)"></span>notification-hub</span></td>
|
|
<td><span class="route-name">sendSmsRoute</span></td>
|
|
<td><span class="correlation-id">ntf-2024-44819</span></td>
|
|
<td class="time-cell"><span class="time-relative">14m ago</span><span class="time-absolute">14:46:22 UTC</span></td>
|
|
<td><div class="duration-cell"><div class="dur-bar"><div class="dur-fill dur-fast" style="width:10%"></div></div><span class="dur-text">52ms</span></div></td>
|
|
</tr>
|
|
<tr class="exec-row row-failed" tabindex="0">
|
|
<td><span class="status-pill pill-failed"><span class="status-dot"></span>FAILED</span></td>
|
|
<td><span class="app-badge"><span class="app-badge-dot" style="background:var(--amber)"></span>inventory-sync</span></td>
|
|
<td><span class="route-name">syncStockRoute</span></td>
|
|
<td><span class="correlation-id">inv-2024-93098</span></td>
|
|
<td class="time-cell"><span class="time-relative">15m ago</span><span class="time-absolute">14:45:09 UTC</span></td>
|
|
<td><div class="duration-cell"><div class="dur-bar"><div class="dur-fill dur-slow" style="width:95%"></div></div><span class="dur-text">2,340ms</span></div></td>
|
|
</tr>
|
|
<tr class="exec-row row-completed" tabindex="0">
|
|
<td><span class="status-pill pill-completed"><span class="status-dot"></span>OK</span></td>
|
|
<td><span class="app-badge"><span class="app-badge-dot" style="background:var(--green)"></span>shipping-tracker</span></td>
|
|
<td><span class="route-name">trackParcelRoute</span></td>
|
|
<td><span class="correlation-id">shp-2024-67430</span></td>
|
|
<td class="time-cell"><span class="time-relative">18m ago</span><span class="time-absolute">14:42:55 UTC</span></td>
|
|
<td><div class="duration-cell"><div class="dur-bar"><div class="dur-fill dur-fast" style="width:22%"></div></div><span class="dur-text">134ms</span></div></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="pagination">
|
|
<button class="page-btn disabled">«</button>
|
|
<button class="page-btn active">1</button>
|
|
<button class="page-btn">2</button>
|
|
<button class="page-btn">3</button>
|
|
<span style="color:var(--text-muted);padding:0 4px;font-family:var(--font-mono)">…</span>
|
|
<button class="page-btn">114</button>
|
|
<button class="page-btn">»</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ═══ Level 4: Detail Panel (on-demand) ═══ -->
|
|
<div class="detail-panel open">
|
|
<div class="detail-header">
|
|
<div class="detail-breadcrumb">
|
|
<span>order-service</span>
|
|
<span class="bc-sep">▸</span>
|
|
<span>processOrderRoute</span>
|
|
<span class="bc-sep">▸</span>
|
|
<span class="bc-current">ord-2024-78291</span>
|
|
</div>
|
|
<button class="detail-close" title="Close (Esc)">×</button>
|
|
</div>
|
|
|
|
<div class="detail-tabs">
|
|
<button class="detail-tab active">Overview</button>
|
|
<button class="detail-tab">Processors</button>
|
|
<button class="detail-tab">Exchange</button>
|
|
<button class="detail-tab">Error</button>
|
|
</div>
|
|
|
|
<div class="detail-body">
|
|
<!-- Overview tab content -->
|
|
<div class="detail-section">
|
|
<div class="detail-section-title">Execution Details</div>
|
|
<div class="detail-grid">
|
|
<span class="detail-key">Status</span>
|
|
<span class="detail-val"><span class="status-pill pill-failed" style="font-size:11px"><span class="status-dot"></span>FAILED</span></span>
|
|
<span class="detail-key">Correlation ID</span>
|
|
<span class="detail-val">ord-2024-78291</span>
|
|
<span class="detail-key">Execution ID</span>
|
|
<span class="detail-val">a3f8c2d1-7e4b-4a91-b6f0-2c8d9e3a1b5f</span>
|
|
<span class="detail-key">Application</span>
|
|
<span class="detail-val">order-service</span>
|
|
<span class="detail-key">Route</span>
|
|
<span class="detail-val" style="color:var(--amber);cursor:pointer">processOrderRoute</span>
|
|
<span class="detail-key">Agent</span>
|
|
<span class="detail-val">order-svc-pod-7b8c9d-x2k4p</span>
|
|
<span class="detail-key">Started</span>
|
|
<span class="detail-val">2024-03-17T14:58:12.341Z</span>
|
|
<span class="detail-key">Duration</span>
|
|
<span class="detail-val" style="color:var(--rose)">1,247ms</span>
|
|
<span class="detail-key">Processors</span>
|
|
<span class="detail-val">7 (5 ok, 1 failed, 1 skipped)</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Processor Timeline -->
|
|
<div class="detail-section">
|
|
<div class="detail-section-title">Processor Timeline</div>
|
|
<div class="processor-timeline">
|
|
<div class="proc-row">
|
|
<span class="proc-name">unmarshal</span>
|
|
<div class="proc-bar-bg"><div class="proc-bar-fill proc-ok" style="left:0;width:8%">12ms</div></div>
|
|
<span class="proc-dur">12ms</span>
|
|
</div>
|
|
<div class="proc-row">
|
|
<span class="proc-name">validate</span>
|
|
<div class="proc-bar-bg"><div class="proc-bar-fill proc-ok" style="left:8%;width:5%">8ms</div></div>
|
|
<span class="proc-dur">8ms</span>
|
|
</div>
|
|
<div class="proc-row">
|
|
<span class="proc-name">enrich(inventory)</span>
|
|
<div class="proc-bar-bg"><div class="proc-bar-fill proc-slow" style="left:13%;width:35%">420ms</div></div>
|
|
<span class="proc-dur">420ms</span>
|
|
</div>
|
|
<div class="proc-row">
|
|
<span class="proc-name">transform</span>
|
|
<div class="proc-bar-bg"><div class="proc-bar-fill proc-ok" style="left:48%;width:3%">5ms</div></div>
|
|
<span class="proc-dur">5ms</span>
|
|
</div>
|
|
<div class="proc-row">
|
|
<span class="proc-name">to(payment-api)</span>
|
|
<div class="proc-bar-bg"><div class="proc-bar-fill proc-error" style="left:51%;width:45%">780ms</div></div>
|
|
<span class="proc-dur">780ms</span>
|
|
</div>
|
|
<div class="proc-row">
|
|
<span class="proc-name">log</span>
|
|
<div class="proc-bar-bg"><div class="proc-bar-fill proc-ok" style="left:96%;width:2%">2ms</div></div>
|
|
<span class="proc-dur">2ms</span>
|
|
</div>
|
|
<div class="proc-row">
|
|
<span class="proc-name" style="color:var(--text-muted)">marshal</span>
|
|
<div class="proc-bar-bg" style="opacity:0.4"></div>
|
|
<span class="proc-dur" style="color:var(--text-muted)">skip</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Error Details -->
|
|
<div class="detail-section">
|
|
<div class="detail-section-title">Error</div>
|
|
<div class="error-block">
|
|
<div class="error-class">org.apache.camel.http.base.HttpOperationFailedException</div>
|
|
<div class="error-message">
|
|
HTTP operation failed invoking https://payment-api.internal/v2/charge<br>
|
|
with statusCode: 503 Service Unavailable<br>
|
|
at processor: to(payment-api) [step 5/7]
|
|
</div>
|
|
<button class="error-expand">▸ Show full stack trace</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="detail-actions">
|
|
<button class="action-btn primary">View Route Diagram</button>
|
|
<button class="action-btn secondary">Copy Execution ID</button>
|
|
<button class="action-btn secondary">Re-process</button>
|
|
</div>
|
|
</div>
|
|
|
|
</div><!-- /results-area -->
|
|
</main>
|
|
</div><!-- /layout -->
|
|
|
|
<!-- ─── Keyboard Shortcuts Bar ─── -->
|
|
<div class="shortcuts-bar">
|
|
<div class="shortcut-hint"><kbd>Ctrl</kbd>+<kbd>K</kbd> Search</div>
|
|
<div class="shortcut-hint"><kbd>↑</kbd><kbd>↓</kbd> Navigate</div>
|
|
<div class="shortcut-hint"><kbd>Enter</kbd> Open detail</div>
|
|
<div class="shortcut-hint"><kbd>Esc</kbd> Close</div>
|
|
<div class="shortcut-hint"><kbd>?</kbd> All shortcuts</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|