Skip to content

Instantly share code, notes, and snippets.

@yevshev
Last active March 7, 2020 19:26
Show Gist options
  • Save yevshev/e41ac58d4e06e54e6ea0423f0592b9b7 to your computer and use it in GitHub Desktop.
Save yevshev/e41ac58d4e06e54e6ea0423f0592b9b7 to your computer and use it in GitHub Desktop.
docker stats to csv
while true; do docker stats --no-stream --format "{{.CPUPerc}},{{.MemUsage}},{{.NetIO}}" container_name | tee --append stats.json; sleep 3; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment