Command your microservices from the edge.
Stratus is an open-source microservices control plane and dashboard designed to simulate how edge services are deployed, configured, and monitored at global scale. Inspired by Cloudflare's control systems, Stratus provides developers with a powerful visual interface to manage distributed services.
Note: Click the badge above to watch the full demo video (1.8MB MP4)
- Service Registry — Manage microservices across multiple regions
- Real-Time Metrics — Live CPU, memory, latency, and error rate monitoring
- WebSocket Updates — Sub-second status synchronization across all clients
- Deployment Logs — Complete audit trail of all service operations
- Carbon Design System — Enterprise-grade IBM UI components
┌────────────────────────────┐
│ Next.js 14 Frontend │
│ Carbon Design System │
└─────────────┬──────────────┘
│ REST / WebSocket
▼
┌─────────────────────────────┐
│ Go Backend (Gin) │
│ • Service Registry │
│ • WebSocket Hub │
│ • Metrics Engine │
└──────────────┬──────────────┘
│
┌─────────┴─────────┐
▼ ▼
┌──────────┐ ┌────────────┐
│PostgreSQL│ │ Redis │
│ Services │ │ Metrics │
└──────────┘ └────────────┘
Stack: Next.js 14 • Go 1.21 • PostgreSQL 16 • Redis 7 • Docker Compose
git clone https://github.com/Taz33m/Stratus---The-Edge-Control-Plane.git
cd Stratus---The-Edge-Control-Plane
docker-compose up --buildAccess dashboard at http://localhost:3000
API available at http://localhost:8080
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/v1/services |
List all services |
| POST | /api/v1/services |
Create new service |
| GET | /api/v1/services/:id |
Get service details |
| PATCH | /api/v1/services/:id |
Update service status |
| DELETE | /api/v1/services/:id |
Delete service |
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/v1/metrics/:id |
Get service metrics |
| GET | /api/v1/metrics/aggregated |
Get aggregated metrics |
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/v1/logs/deployment |
Get deployment logs |
Endpoint: ws://localhost:8080/ws
Real-time updates for service status, metrics, and deployment events.
Backend (backend/.env)
DATABASE_URL=postgres://stratus:stratus@localhost:5432/stratus
REDIS_URL=redis://localhost:6379
PORT=8080Frontend (frontend/.env.local)
NEXT_PUBLIC_API_URL=http://localhost:8080
NEXT_PUBLIC_WS_URL=ws://localhost:8080MIT License - see LICENSE
Built with ❤️ for the edge
⭐ Star this repo if you found it helpful!