FAUN — Developer Community 🐾

We help developers learn and grow by keeping them up with what matters. 👉 www.faun.dev

Follow publication

Member-only story

Thread and Heap Dumps in Docker Containers

Maciej
FAUN — Developer Community 🐾
3 min readNov 18, 2020

--

Introduction

Sometimes we need to debug our docker applications with the use of Thread/Heap dump, below is a simple and quick way to do it from docker container

Environment

Thread dump

Following steps will allow take thread dumps from a docker container, and then copy saved file into to host

  • Run example application:
root@vagrant:/home/vagrant# docker run -d bitnami/java-example:0.0.1
  • Run the below command and go into the container.
root@vagrant:/home/vagrant# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
bf342a25fc61 bitnami/java-example:0.0.1 "java -jar jenkins.w…" 2 seconds ago Up 1 second 8080/tcp competent_dubinsky
root@vagrant:/home/vagrant# docker exec -it bf342a25fc61 bash
  • Find PID of java process (First column is user that run the process, second column PID)
root@bf342a25fc61:/app# ps -fea|grep -i java
root 1 0 2 19:02 ? 00:00:06 java -jar jenkins.war
root 43 26 0 19:06 pts/0 00:00:00 grep -i java
  • Run the below command to get the thread dump. (Change PID to number of process)
root@bf342a25fc61:/app# jstack PID > thread.tdump
  • Exit from the docker container and download thethread.tdump from the docker container to host
root@bf342a25fc61:/app# exit
root@vagrant:/home/vagrant# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
bf342a25fc61 bitnami/java-example:0.0.1 "java -jar jenkins.w…" 8 minutes ago Up 7 minutes 8080/tcp competent_dubinsky
root@vagrant:/home/vagrant# docker cp bf342a25fc61:/app/thread.tdump .
root@vagrant:/home/vagrant# ls
file_with_password.txt new_file.txt thread.tdump

Heap Dump

--

--

Published in FAUN — Developer Community 🐾

We help developers learn and grow by keeping them up with what matters. 👉 www.faun.dev

Written by Maciej

DevOps Consultant. I’m strongly focused on automation, security, and reliability.

Responses (1)