mirror of
https://github.com/unraid/webgui.git
synced 2026-01-14 13:39:58 -06:00
7 lines
238 B
Bash
Executable File
7 lines
238 B
Bash
Executable File
#!/bin/bash
|
|
|
|
while :; do
|
|
curl --data "$(docker stats --no-stream --format='{{.Container}} {{.CPUPerc}} {{.MemPerc}}')" --unix-socket /var/run/nginx.socket http://localhost/pub/dockerload?buffer_length=0 >/dev/null 2>&1
|
|
sleep 1
|
|
done &
|