mirror of
https://github.com/unraid/webgui.git
synced 2025-12-31 22:50:25 -06:00
- Add Docker RAM usage to Dashbaord page - Rename 'Services' to 'System' - Remove 'usage' suffix from Services naming scheme
3 lines
117 B
Bash
3 lines
117 B
Bash
#!/bin/bash
|
|
virsh domstats --list-active --balloon 2>/dev/null | awk -F= '/^ *balloon.rss=/{t+=$2}END{print t*1024}'
|