4runr-os 2.10.49 → 2.10.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apps/gateway/src/metrics/monitoring-detail.ts +162 -162
- package/apps/gateway/src/middleware/log-capture.ts +70 -70
- package/apps/gateway/src/routes/monitoring.ts +298 -298
- package/mk3-tui/src/app.rs +37 -47
- package/mk3-tui/src/monitoring/mod.rs +439 -439
- package/mk3-tui/src/ui/portal_monitoring.rs +3 -2
- package/package.json +2 -2
|
@@ -720,7 +720,8 @@ fn build_body_lines(state: &AppState, summary_width: usize) -> Vec<Line<'static>
|
|
|
720
720
|
"If results stay empty, nothing may be writing to the Gateway log ring buffer yet.".into(),
|
|
721
721
|
],
|
|
722
722
|
MonitoringSection::System => vec![
|
|
723
|
-
"Press S to fetch CLI
|
|
723
|
+
"Press S to fetch CLI process + host OS stats and run diagnostics.".into(),
|
|
724
|
+
"Press S again to hide diagnostics when they are shown.".into(),
|
|
724
725
|
String::new(),
|
|
725
726
|
"MK3 TUI runtime".into(),
|
|
726
727
|
format!(
|
|
@@ -1041,7 +1042,7 @@ pub fn render(f: &mut Frame, state: &mut AppState) {
|
|
|
1041
1042
|
Line::from(" R full snapshot refresh without closing your current section"),
|
|
1042
1043
|
Line::from(" L jump to Logs + fetch Gateway logs"),
|
|
1043
1044
|
Line::from(" H jump to Metrics + toggle trends → Metrics drill ← leave drill"),
|
|
1044
|
-
Line::from(" T jump to Dependencies detail S
|
|
1045
|
+
Line::from(" T jump to Dependencies detail S System stats + diagnostics (toggle)"),
|
|
1045
1046
|
Line::from(" A toggle live auto-refresh (off by default for stable reading)"),
|
|
1046
1047
|
Line::from(" E export diagnostics JSON to the current working directory"),
|
|
1047
1048
|
Line::from(""),
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "4runr-os",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.50",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "4Runr AI Agent OS - Secure terminal interface for AI agents. v2.10.
|
|
5
|
+
"description": "4Runr AI Agent OS - Secure terminal interface for AI agents. v2.10.50: Portal Monitoring S toggles System diagnostics (hide without cancelling observability; S during load aborts fetch). Preserves System/Dependencies on full observability refresh.",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"4runr": "dist/index.js",
|