secubox-openwrt/package/secubox/luci-app-glances/root/usr/share/rpcd/acl.d/luci-app-glances.json
CyberMind-FR 4004f2bfe8 feat(glances): Add Glances system monitoring module
Add secubox-app-glances and luci-app-glances packages:

secubox-app-glances:
- LXC container with nicolargo/glances:latest-full Docker image
- Web UI on port 61208, API on port 61209
- UCI configuration for monitoring options and alert thresholds
- glancesctl management script

luci-app-glances:
- Dashboard view with service status and quick actions
- Embedded Web UI view with iframe
- Settings view for configuration
- RPCD backend with proper ACL permissions

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 07:38:37 +01:00

33 lines
471 B
JSON

{
"luci-app-glances": {
"description": "Grant access to Glances LuCI app",
"read": {
"ubus": {
"luci.glances": [
"get_status",
"get_config",
"get_monitoring_config",
"get_alerts_config",
"get_web_url"
]
},
"uci": [
"glances"
]
},
"write": {
"ubus": {
"luci.glances": [
"service_start",
"service_stop",
"service_restart",
"set_config"
]
},
"uci": [
"glances"
]
}
}
}