Skip to content

Commit e7f16c3

Browse files
committed
Update README.md to reflect Phase 5 completion
- Mark Phase 5 (Real-Time Streaming & API Gateway) as complete - Update project structure to remove pending status from implemented services - Add API Gateway and Real-Time Streaming to Quick Start commands - Add all 5 services to API Endpoints table
1 parent d5d3f47 commit e7f16c3

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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

228228
See [`src/development-plan.md`](src/development-plan.md) for detailed task tracking.
@@ -255,6 +255,8 @@ cd src && docker-compose up -d postgresql redis
255255
cd src/cluster-registry && uvicorn app.main:app --reload --port 8001
256256
cd src/observability-collector && uvicorn app.main:app --reload --port 8002
257257
cd 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

Comments
 (0)