"More than a watcher, itโs a state of mind."
A feather-light, Zen-driven dashboard that brings clarity to chaos and total mastery to Windows services.
Provide a seamless dashboard for developers and system admins to monitor status, track resources (CPU/RAM), and control critical services. Default configuration supports monitoring POS services, but can be adapted for any Windows service.
| Feature | Description |
|---|---|
| โก Real-time Monitoring | Live status updates (Running, Stopped, Paused) with sub-second latency. |
| ๐ Resource Tracking | Visual graphs for CPU usage (%) and Memory consumption (MB). |
| ๐ฎ Service Control | Start, Stop, and Restart services directly from the UI. |
| ๐ฆ Smart Installation | Install and update service executables/files with one click. |
| โ๏ธ Configurable | Simple YAML configuration for managing multiple services. |
| ๐ System Tray | (Coming Soon) Background operation and status notifications. |
| Real-time Monitoring | Configuration & Settings |
|---|---|
![]() |
![]() |
| Service Installer | OTA Updates |
|---|---|
![]() |
![]() |
Built on the Clean Architecture principle, ensuring separation of concerns and maintainability.
services-update).zenlight-support/
โโโ internal/
โ โโโ app/ # App lifecycle & Watcher logic
โ โโโ config/ # Config loader (YAML)
โ โโโ domain/ # Interfaces & DTOs
โ โโโ service/ # Windows SCM implementation
โโโ frontend/src/ # Svelte 5 UI Components
โโโ main.go # Entry point
โโโ wails.json # Wails config
go install github.com/wailsapp/wails/v2/cmd/wails@latestClone & Install Dependencies
git clone https://github.com/zenkiet/zenlight-support.git
cd zenlight-support
# Install backend & frontend deps
make deps
cd frontend && pnpm install
Run in Development Mode
wails dev
Build for Production
wails build
# Output: ./build/bin/zenlight-support.exe
config.yaml)The app auto-generates this file on first run.
services:
- id: "550e8400-e29b-41d4-a716-446655440000" # Unique ID
name: "Payment Gateway Service" # Display Name
serviceName: "PaymentSvc" # Actual Windows Service Name
path: "C:\\Services\\Payment\\app.exe" # Executable Path
installable: true # Allow file updates
| Function | Description |
|---|---|
Startup(ctx) |
Initializes Service Manager connection. |
Start/StopService(id) |
Controls specific service state. |
InstallService(id, files) |
Updates binary files and restarts service. |
GetConfig() |
Returns the current loaded configuration. |
| Event | Payload | Description |
|---|---|---|
services-update |
map[string]Status |
Real-time status stream (1Hz). |
serviceName in config.yaml doesn't match the actual Windows Service name.services.msc for the exact Service Name (not Display Name) and update config.Contributions are welcome! Please open issues or pull requests for bug fixes, features, or improvements.
This project is licensed under the MIT License - see the LICENSE file for details.
Star the repository โญ
Share it with your network ๐ข
Made with โค๏ธ by ZenKiet