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>
33 lines
471 B
JSON
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"
|
|
]
|
|
}
|
|
}
|
|
}
|