diff options
Diffstat (limited to 'sdc-os-chef/scripts/docker_stats.sh')
-rw-r--r-- | sdc-os-chef/scripts/docker_stats.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sdc-os-chef/scripts/docker_stats.sh b/sdc-os-chef/scripts/docker_stats.sh index 0047fe4df0..1759569b63 100644 --- a/sdc-os-chef/scripts/docker_stats.sh +++ b/sdc-os-chef/scripts/docker_stats.sh @@ -30,6 +30,10 @@ grep -v "^\-" ${FILE} |grep -v ^CONT| awk 'BEGIN { d=$6"-"$2"-"substr("00",0,2-length($3))$3"-"substr($4,0,5) next } +/MiB/ { + print $1" "d" "$3/1024" "$8 + next +} /GiB/ { print $1" "d" "$3" "$8 next |