I am facing a memory leak issue in job-server which is present in docker container. To analyze what is causing the issue I need to attach the jprofiler or yourkit to docker container process. I am not sure how to do that. can someone put some light on it?
How to attach profiler to docker process
7.2k Views Asked by eatSleepCode At
2
There are 2 best solutions below
0

You can attach your jProfiler to the application inside your docker container like this:
EXPOSE 8849
Exposing the profiling port is important (8849 is default)
RUN wget http://download-keycdn.ej-technologies.com/jprofiler/jprofiler_linux_9_2_1.tar.gz --no-verbose -P /tmp/ && \
tar -xzf /tmp/jprofiler_linux_9_2_1.tar.gz -C /usr/local && \
rm /tmp/jprofiler_linux_9_2_1.tar.gz
This downloads and extracts the jProfiler inside your docker container, when the container is build.
ENTRYPOINT exec java -jar /app.jar & \
echo $! >>/tmp/process.pid && \
sleep 60s && \
/usr/local/jprofiler9/bin/jpenable --pid=$(cat /tmp/process.pid) --gui --port=8849 && \
while true; do sleep 2147483647; done
This is how I dealt with the fact that you can't run two applications inside one docker container. First we execute the jar and save the processId to a file. Then we simply wait 60 seconds and after that we start the jProfiler (jpenable) and attach it to our process (via processId). The while loop is necessary to keep the container running afterwards.
You can try and follow "Configure JProfiler 9.2 to profiling applications running in Docker containers" from Andrew Liu:
It would involve completing your existing Dockerfile with:
That would enable you to exec a bash to the running container: