Full stack visibility: mo S3 buckets, Elasticsearch/Kibana UI and topology

This commit is contained in:
mo
2026-06-25 00:53:11 +00:00
parent 4a5aed21ee
commit 9deda7fcb1
14 changed files with 356 additions and 32 deletions
+3
View File
@@ -15,6 +15,7 @@ import { PresentationView } from './components/features/PresentationView'
import { DataQualityView } from './components/features/DataQualityView'
import { KnowledgeChatView } from './components/features/KnowledgeChatView'
import { StorageView } from './components/features/StorageView'
import { SearchView } from './components/features/SearchView'
import { TerminalDock } from './components/features/TerminalDock'
import { resolveInfraNode } from './lib/infraCatalog'
import { cn } from './lib/utils'
@@ -118,6 +119,8 @@ export default function App() {
<KnowledgeChatView onGpuActivity={setGpuChatActive} />
) : cc.mainView === 'storage' ? (
<StorageView />
) : cc.mainView === 'search' ? (
<SearchView />
) : (
<ApprovalInbox agents={cc.agents} livePending={cc.approvals} onDecide={cc.decide} />
)}