mirror of
https://github.com/unraid/webgui.git
synced 2026-01-08 02:29:51 -06:00
5 lines
217 B
Bash
Executable File
5 lines
217 B
Bash
Executable File
#!/bin/bash
|
|
while :; do
|
|
curl -sfd "$(docker stats --no-stream --format='{{.ID}};{{.CPUPerc}};{{.MemUsage}}')" --unix-socket /var/run/nginx.socket http://localhost/pub/dockerload?buffer_length=0 >/dev/null 2>&1
|
|
done
|