Live Monitoring Dashboard
by @keylimesoda
Zero-token real-time Discord monitoring dashboard for OpenClaw. Displays system health, cron jobs, sessions, and performance analytics via persistent Discord...
clawhub install tommy-monitoring-dashboardπ About This Skill
name: live-monitoring-dashboard description: "Zero-token real-time Discord monitoring dashboard for OpenClaw. Displays system health, cron jobs, sessions, and performance analytics via persistent Discord messages updated every 2 minutes with no LLM token cost." metadata: { "openclaw": { "emoji": "π", "requires": { "bins": ["curl", "jq", "top", "df"] } } }
Live Monitoring Dashboard
Zero-Token Real-time Discord monitoring for your OpenClaw ecosystem
What it does
Creates a dedicated Discord channel with live-updating messages showing:
π€ Activity Monitoring (Slice 1 & 2)
π₯οΈ System Health (Slice 3)
π Performance Analytics (Slice 4) β¨
Zero Token Cost: Uses shell scripts + Discord CLI commands instead of expensive LLM calls for 100% cost efficiency.
Updates every 60 seconds with zero message spam - only edits existing messages.
Installation
npm install
./install.sh
Configuration
The skill will:
1. Create a dedicated monitoring channel (#tommy-monitoring by default)
2. Post initial dual dashboard messages (Activity + System Health)
3. Begin live zero-token updates automatically
4. Initialize performance analytics and alert thresholds
Usage
Once installed, the monitoring runs automatically with these commands:
Manual Performance Tracking:
./scripts/performance-tracker.sh track # Log current metrics and check alerts
./scripts/performance-tracker.sh trends # Show performance trends
./scripts/performance-tracker.sh alerts # View recent alerts
./scripts/performance-tracker.sh cleanup # Clean old performance data
Configuration:
Performance thresholds can be customized in config/performance-config.json:
{
"cpu_warning": 70,
"cpu_critical": 85,
"mem_warning": 75,
"mem_critical": 90,
"disk_warning": 80,
"disk_critical": 95,
"retention_days": 7
}
Requirements
message tool availableps, top, uptime, df)jq for JSON configuration parsingbc for mathematical calculationsComplete Feature Set (All 4 Slices)
β Slice 1 & 2: Discord Activity Monitoring
β Slice 3: System Health Monitoring
β Slice 4: Performance Analytics & Smart Alerts β
β Zero Token Architecture:
openclaw message edit CLI usageArchitecture
Update Cycle (60-second intervals):
1. Data Collection: System metrics via shell commands (top, df, uptime)
2. Performance Tracking: Historical logging and trend analysis
3. Alert Processing: Threshold checking and alert generation
4. Discord Updates: Direct message editing via OpenClaw CLI
5. Cleanup: Automatic old data removal based on retention policy
File Structure:
live-monitoring-dashboard/
βββ scripts/
β βββ zero-token-dashboard.sh # Main dashboard updater
β βββ performance-tracker.sh # Slice 4 analytics
βββ config/
β βββ live-state.json # Runtime state
β βββ performance-config.json # Alert thresholds
βββ data/
βββ performance/ # Daily metrics (CSV)
βββ alerts.log # Alert history
Performance
π Ready for Production | Built for OpenClaw Community
*Developed during trust window sessions March 5, 2026 - demonstrating zero-token operational excellence and partnership-level autonomous development.*
π‘ Examples
Once installed, the monitoring runs automatically with these commands:
Manual Performance Tracking:
./scripts/performance-tracker.sh track # Log current metrics and check alerts
./scripts/performance-tracker.sh trends # Show performance trends
./scripts/performance-tracker.sh alerts # View recent alerts
./scripts/performance-tracker.sh cleanup # Clean old performance data
Configuration:
Performance thresholds can be customized in config/performance-config.json:
{
"cpu_warning": 70,
"cpu_critical": 85,
"mem_warning": 75,
"mem_critical": 90,
"disk_warning": 80,
"disk_critical": 95,
"retention_days": 7
}
βοΈ Configuration
The skill will:
1. Create a dedicated monitoring channel (#tommy-monitoring by default)
2. Post initial dual dashboard messages (Activity + System Health)
3. Begin live zero-token updates automatically
4. Initialize performance analytics and alert thresholds