Runtime¶
The Runtime group is the operational view — JVM and OS health, HTTP and session instrumentation, log search, and the raw trace stream. Where AI Usage and AI Stack answer "what did the agent do," Runtime answers "is the process itself healthy" and "give me the unfiltered evidence."
flowchart LR
MR["MeterRegistry"]
SMC["SystemMetrics<br/>Collector"]
SMR["SystemMetrics<br/>RingBuffer"]
SMT["SystemMetrics<br/>TimeSeries"]
MR --> SMC --> SMR --> SMT
SMT --> HO["Host"]
MR -. live read .-> WA["Web Application"]
LogStream["Rolling<br/>app log"] --> LG["Logs"]
Coll["Observability<br/>Collector"] --> Buf["Observability<br/>RingBuffer"]
Buf --> TR["Traces"]
TR -. row click .-> TD["Trace Detail"]
LG -. traceId match .-> TR
The four tabs are independent — Logs and Traces share an MDC traceId so an operator can drill from a log line to the trace it came from (and vice versa), but otherwise each tab pulls from its own source. The Host and Web Application tabs both read MeterRegistry, but Host historizes it through the dedicated SystemMetricsCollector parallel pipeline while Web Application reads live values directly.
Pages in this group¶
-
SystemMetricsSnapshot+SystemMetricsTimeSeries(parallel pipeline). JVM heap / GC / threads / classes, OS CPU / load / uptime, disk, file descriptors. -
MeterRegistryHTTP + Tomcat + Logback + Spring AI active gauges. HTTP traffic, Tomcat session state, logback level counts, in-flight LLM operations. -
Live tail of the application log with structured MDC extraction. Regex / level / follow-tail filters; click row → jump to trace.
-
ObservabilityRingBuffer.liveStream()+snapshot(). Raw trace rows; click row → Trace Detail dialog with span timeline.
Cross-references¶
- Index — observability landing + the four group pages
- AI Usage — Tokens & Cost · AI Models
- AI Stack — Tool Studio · MCP Servers · MCP Inspector · Vector Database · Agentic Chat
- Tokens & Cost → Model Pricing Manager — configure per-model rates and display currency
- Observability Architecture — pipeline, storage tiers, external export, configuration