Created
May 20, 2019 14:56
-
-
Save earthgecko/627952abb2b1e7208a2721655d63ecb2 to your computer and use it in GitHub Desktop.
Info about the processes running in docker containers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#### | |
# docker container processes | |
#### | |
# processes running in docker containers | |
> /tmp/docker.processes.txt | |
for i_container_id in $(docker ps | tr -s ' ' ',' | cut -d',' -f1 | grep -v CONTAINER) | |
do | |
CONTAINER_NAME=$(docker ps | tr -s ' ' ',' | grep "$i_container_id" | sed -e 's/.*,//g') | |
echo "# $i_container_id, $CONTAINER_NAME" | tee -a /tmp/docker.processes.txt | |
docker top $i_container_id | tee -a /tmp/docker.processes.txt | |
done | |
# Number of processes running in docker containers | |
cat /tmp/docker.processes.txt | grep -v "^#\|UID" | tr -s ' ' ',' | cut -d',' -f2 | sort -n | uniq | wc -l | |
# docker container processes | |
cat /tmp/docker.processes.txt | |
# process pids of processes running in docker container | |
cat /tmp/docker.processes.txt | grep -v "^#\|UID" | tr -s ' ' ',' | cut -d',' -f2 | sort -n | uniq | |
PIDS=$(cat /tmp/docker.processes.txt | grep -v "^#\|UID" | tr -s ' ' ',' | cut -d',' -f2 | sort -n | uniq | tr '\n' ' ') | |
# pid list | |
ps u -p $PIDS | |
# Total %MEM used by processes in docker containers | |
ps u -p $PIDS | tr -s ' ' ',' | grep -v "USER,PID" | cut -d',' -f4 | paste -sd+ | bc | |
# Total %CPU used by processes in docker containers | |
ps u -p $PIDS | tr -s ' ' ',' | grep -v "USER,PID" | cut -d',' -f3 | paste -sd+ | bc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment