@@ -205,8 +205,8 @@ aiops-nextgen/
205205 ├── cluster-registry/ # Fleet management service
206206 ├── observability-collector/# Metrics federation service
207207 ├── intelligence-engine/ # AI/LLM service
208- ├── realtime-streaming/ # WebSocket service (pending)
209- ├── api-gateway/ # Entry point service (pending)
208+ ├── realtime-streaming/ # WebSocket service
209+ ├── api-gateway/ # Entry point service
210210 ├── frontend/ # React SPA (pending)
211211 ├── docker-compose.yml # Local development stack
212212 └── development-plan.md # Implementation roadmap
@@ -222,7 +222,7 @@ aiops-nextgen/
222222| 2 | Cluster Registry (fleet CRUD, health monitoring, events) | ✅ Complete |
223223| 3 | Observability Collector (metrics, alerts, GPU telemetry) | ✅ Complete |
224224| 4 | Intelligence Engine (LLM, personas, chat, tool calling) | ✅ Complete |
225- | 5 | Real-time Streaming & API Gateway | Pending |
225+ | 5 | Real-time Streaming & API Gateway | ✅ Complete |
226226| 6 | Frontend (React SPA) | Pending |
227227
228228See [ ` src/development-plan.md ` ] ( src/development-plan.md ) for detailed task tracking.
@@ -255,6 +255,8 @@ cd src && docker-compose up -d postgresql redis
255255cd src/cluster-registry && uvicorn app.main:app --reload --port 8001
256256cd src/observability-collector && uvicorn app.main:app --reload --port 8002
257257cd src/intelligence-engine && uvicorn app.main:app --reload --port 8003
258+ cd src/realtime-streaming && uvicorn app.main:app --reload --port 8004
259+ cd src/api-gateway && uvicorn app.main:app --reload --port 8000
258260```
259261
260262### OpenShift Deployment
@@ -275,8 +277,10 @@ oc get pods -n aiops-nextgen
275277
276278| Service | Port | Health Check |
277279| ---------| ------| --------------|
280+ | API Gateway | 8000 | ` GET /health ` , ` GET /ready ` |
278281| Cluster Registry | 8001 | ` GET /health ` , ` GET /ready ` |
279282| Observability Collector | 8002 | ` GET /health ` , ` GET /ready ` |
280283| Intelligence Engine | 8003 | ` GET /health ` , ` GET /ready ` |
284+ | Real-Time Streaming | 8004 | ` GET /health ` , ` GET /ready ` |
281285
282286---
0 commit comments