eKuiper Manager
January 26, 2026 ยท View on GitHub
๐ The First Open-Source Web UI & Manager for LF Edge eKuiper - Because the Community Deserves Better
An open-source, community-driven web interface and management platform for eKuiper - the lightweight IoT data analytics and stream processing engine. Built because the existing closed-source solution is buggy and the community deserves a reliable, open alternative.
Developed & Maintained by I-Dacs Labs
๐ง Contact: measure@i-dacs.com | ๐ Website: i-dacs.com | ๐ผ LinkedIn
๐ฏ Why This Project?
There is currently no fully open-source eKuiper management UI. EMQ's proprietary eKuiper Manager is:
- Closed source
- Reportedly buggy and unreliable
- Not community-extensible
This project aims to fill that gap with a completely open-source, community-driven solution.
๐ Feature Status
โ Fully Built & Working
| Feature | Description |
|---|---|
| Swagger API Playground | Complete interactive API documentation with live "Try It Out" functionality. Full OpenAPI 3.0 spec with 70+ endpoints. |
| Rule Tracing & Debugging | Real-time data flow tracing with span hierarchy and detailed message attributes. |
| Rule Topology | Visual graph representation of the data flow from sources through operators to sinks. |
| Query Plan (Explain) | Visualized execution plans and performance hints for eKuiper SQL queries. |
| AI Assistant | Conversational agent, Rule/Stream generators, Analysis tools. (New in v1.2.0) |
| Server Persistence | Browser-based (Default) or SQLite (Experimental) storage for server configs. |
๐ถ Partially Built (Functional but Incomplete)
| Feature | Status | Notes |
|---|---|---|
| Query Designer | 30% | Visual builder for shop floor users. Node-based editor in progress. |
| Rule Management | 90% | List, start, stop, tracing, topology, and explain working. Edit with SQL working. Create with UI logic in progress. |
| Dashboard Overview | 70% | System info display, CPU/memory/uptime monitoring. Needs real-time refresh polish. |
| Rule Metrics | 70% | Basic metrics and status display. Advanced historical charts pending. |
| eKuiper Health Check | 80% | Ping and system info working. Connection status indicators need work. |
| Action/Sink Configuration | 40% | Basic MQTT sink working. Other sink types need implementation. |
| Stream Management | 50% | List and view streams. Create with SQL editor partially working. |
๐ง Under Development
| Feature | Priority | Notes |
|---|---|---|
| Visual Pipeline Builder | Medium | Drag-and-drop rule builder with React Flow |
| Monaco SQL Editor | High | eKuiper SQL syntax highlighting & IntelliSense |
| MQTT Message Simulator | High | Test message generation for rule validation |
| Connection Management | Medium | Shared MQTT, Redis, SQL connections |
| Schema Registry | Low | Protobuf and JSON Schema management |
| Import/Export | Medium | Backup and restore configurations |
| Real-time Logs Viewer | Low | Filter and search server logs |
| Python Plugin Editor | Low | Custom function/source/sink development |
| Batch Rule Operations | Medium | Multi-select start/stop/delete |
| Configuration Templates | Low | Pre-configured source/sink templates |
๐ฃ๏ธ Development Roadmap
Phase 1: MQTT-First Development (Current Priority)
I have the capacity to fully test only MQTT-based pathways, so those will be developed and validated first:
- โ Swagger API Playground - Complete
- ๐ MQTT Source Configuration - In Progress
- ๐ MQTT Sink Configuration - In Progress
- ๐ MQTT-based Rule Creation & Testing - In Progress
- โณ MQTT Message Simulator - Planned
- โณ MQTT Connection Management - Planned
Phase 2: Core Rule Engine Features
- โ Rule CRUD with validation (SQL-based)
- โ Rule status & basic metrics
- โ Rule topology visualization
- โ Data tracing and debugging
- โ Query execution plan visualization (Explain)
- โณ Advanced historical charts (Pending)
Phase 3: Extended Sources & Sinks
- HTTP Pull/Push sources
- REST API sinks
- Redis pub/sub
- InfluxDB sinks
- File sources/sinks
Phase 4: Advanced Features
- Schema registry integration
- Python plugin development environment
- Visual pipeline builder
- Import/Export functionality
๐ Quick Start
Prerequisites
- Node.js 18+
- eKuiper server running (default: http://localhost:9081)
- (Optional) OpenRouter API Key for AI features
Installation
# Clone the repository
git clone https://github.com/ankur-paan/ekuiper-manager.git
cd ekuiper-manager
# Install dependencies
npm install
# Start development server
npm run dev
Open http://localhost:3000 in your browser.
AI Configuration (Optional)
To enable AI features, create a .env file and add your OpenRouter key:
OPENROUTER_API_KEY=your_key_here
Persistence Configuration
By default, server connections are stored in your Browser (Local Storage). To enable Database Mode (SQLite) (Experimental/Beta):
- Configure
prismain your environment. - Toggle "Persistence Mode" in Settings.
Note: Database mode is work-in-progress and may be unstable. Browser mode is recommended.
Connect to eKuiper
- Start your eKuiper instance
- Navigate to the Manager Overview
- Enter your eKuiper server URL and click Connect
- Explore the Swagger Playground at
/api-docs
Documentation available
https://ekuiper-manager.superdocs.cloud/
๐ค Contributing - Let's Build This Together!
This project needs YOUR help to become the best eKuiper manager out there!
Why Contribute?
- ๐ First-mover advantage - Be part of building the definitive open-source eKuiper UI
- ๐ง Real impact - Your code will be used by the global IoT community
- ๐ Learn edge computing - Work with cutting-edge IoT stream processing
- ๐ค Community driven - No corporate agenda, just building great software
Priority Contribution Areas
| Area | Difficulty | Impact |
|---|---|---|
| Non-MQTT Source Testing | Medium | ๐ฅ๐ฅ๐ฅ I can't test these - need contributors with Kafka, Redis, HTTP setups |
| Sink Type Implementation | Medium | ๐ฅ๐ฅ๐ฅ InfluxDB, TDengine, SQL sinks need work |
| UI/UX Improvements | Easy-Medium | ๐ฅ๐ฅ Always welcome |
| Documentation | Easy | ๐ฅ๐ฅ Examples, tutorials, API guides |
| Error Handling | Medium | ๐ฅ๐ฅ Edge cases and better user feedback |
| Testing | Medium | ๐ฅ Unit tests, integration tests |
| Docker Support | Medium | ๐ฅ Docker Compose setup with eKuiper |
How to Contribute
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
Development Guidelines
- Follow existing code style (TypeScript, React patterns)
- Add comments for complex logic
- Test with a running eKuiper instance
- Update documentation when adding features
๐ Tech Stack
| Technology | Purpose |
|---|---|
| Next.js 14 | React framework with App Router |
| TypeScript | Type-safe development |
| Tailwind CSS | Styling |
| Radix UI | Accessible UI primitives |
| Monaco Editor | Code editing |
| React Flow | Visual pipeline builder |
| Swagger UI React | API documentation |
| Zustand | State management |
| OpenRouter | AI Model Integration |
๐ Project Structure
src/
โโโ app/ # Next.js App Router
โ โโโ page.tsx # Main application entry
โ โโโ api-docs/ # Swagger playground
โโโ components/
โ โโโ dashboard/ # Metrics dashboard
โ โโโ editor/ # Monaco code editors
โ โโโ manager/ # Manager UI components
โ โโโ pipeline/ # Visual pipeline builder
โ โโโ ui/ # Shared UI components
โโโ lib/
โ โโโ ekuiper/ # eKuiper API client
โ โโโ client.ts # Base REST client
โ โโโ manager-client.ts # Extended manager client
โ โโโ manager-types.ts # TypeScript interfaces
โโโ public/
โโโ ekuiper-openapi.json # Complete OpenAPI spec
๐ License
This project is licensed under the IDACS Open Source License (IOSL) - see the LICENSE file for details.
Key points:
- โ Free to use, modify, and distribute
- โ Commercial use permitted
- ๐ง Organizations with >$1M annual turnover using in production: please notify us at measure@i-dacs.com (just a friendly notification, no fee required)
๐ Acknowledgments
- LF Edge eKuiper - The IoT stream processing engine
- EMQ - Original developers of eKuiper
- Next.js - React framework
- Swagger UI - API documentation
โญ Star This Repo!
If you find this project useful, please give it a star! It helps others discover the project and motivates continued development.
Developed by I-Dacs Labs
๐ง measure@i-dacs.com | ๐ i-dacs.com | ๐ผ LinkedIn
Building the future of Industrial IoT together.