4runr-os 2.10.49 → 2.10.51
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/package-lock.json +19 -19
- 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 +59 -49
- package/mk3-tui/src/monitoring/mod.rs +439 -439
- package/mk3-tui/src/ui/portal_monitoring.rs +5 -4
- 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!(
|
|
@@ -877,7 +878,7 @@ pub fn render(f: &mut Frame, state: &mut AppState) {
|
|
|
877
878
|
]);
|
|
878
879
|
|
|
879
880
|
let keys_hint = Line::from(vec![Span::styled(
|
|
880
|
-
"R full refresh · L logs · wheel/Pg scroll · H metrics trends · → metrics drill · T dependencies · S system · A live",
|
|
881
|
+
"R full refresh · L logs · wheel/Pg scroll · ↑↓ scroll when Logs or System (S) diag · H metrics trends · → metrics drill · T dependencies · S system · A live",
|
|
881
882
|
Style::default().fg(TEXT_DIM),
|
|
882
883
|
)]);
|
|
883
884
|
|
|
@@ -1034,14 +1035,14 @@ pub fn render(f: &mut Frame, state: &mut AppState) {
|
|
|
1034
1035
|
Line::from(
|
|
1035
1036
|
" ↑/↓ select section Enter/Space expand/collapse PgUp/PgDn/mouse scroll",
|
|
1036
1037
|
),
|
|
1037
|
-
Line::from(" When Logs is selected, ↑/↓ scroll
|
|
1038
|
+
Line::from(" When Logs is selected, or System with diagnostics (after S), ↑/↓ scroll that content first."),
|
|
1038
1039
|
Line::from(" ESC close help / return to Main"),
|
|
1039
1040
|
Line::from(""),
|
|
1040
1041
|
Line::from("Actions"),
|
|
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.51",
|
|
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.51: Portal Monitoring ↑/↓ scroll System diagnostics (after S), same as Logs. v2.10.50: S toggles diagnostics; preserves System/Dependencies on observability refresh.",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"4runr": "dist/index.js",
|