From 552da798284e3f236b9b5e2ed805c2fe4ca61321 Mon Sep 17 00:00:00 2001 From: Inaki Fernandez Date: Thu, 21 May 2020 11:06:13 +0200 Subject: [PATCH] makdown fix --- docs/monitoring.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/monitoring.md b/docs/monitoring.md index 7f6e7243..b1edc522 100644 --- a/docs/monitoring.md +++ b/docs/monitoring.md @@ -714,16 +714,16 @@ do done ``` - - How to run this script from within the POD: ```./script_thread_dump.sh 1 15 3```, where: - - “1”: PID of java process (“1” in containers running a single process, check with “ps ux” command). - - “15”: 15 repetitions or thread dumps - - “3”: interval of 3 seconds between each thread dump. - - According to some references only 3 thread dumps captured in a timeframe of 10 seconds is necessary (when we want to troubleshoot a Java issue during a service degradation). - - Sample thread dump analysis reports generated by fastThread: - - [Transitive blocks](https://fastthread.io/ft-thread-report.jsp?dumpId=1&s=t) - - [Unresponsive JVM](https://fastthread.io/ft-thread-report.jsp?dumpId=1&s=t) - - [Sudden CPU spike](https://fastthread.io/ft-thread-report.jsp?dumpId=1&s=t) - - [Thread Leaks](https://fastthread.io/ft-thread-report.jsp?dumpId=1&s=t) +- How to run this script from within the POD: ```./script_thread_dump.sh 1 15 3```, where: + - “1”: PID of java process (“1” in containers running a single process, check with “ps ux” command). + - “15”: 15 repetitions or thread dumps + - “3”: interval of 3 seconds between each thread dump. +- According to some references only 3 thread dumps captured in a timeframe of 10 seconds is necessary (when we want to troubleshoot a Java issue during a service degradation). +- Sample thread dump analysis reports generated by fastThread: + - [Transitive blocks](https://fastthread.io/ft-thread-report.jsp?dumpId=1&s=t) + - [Unresponsive JVM](https://fastthread.io/ft-thread-report.jsp?dumpId=1&s=t) + - [Sudden CPU spike](https://fastthread.io/ft-thread-report.jsp?dumpId=1&s=t) + - [Thread Leaks](https://fastthread.io/ft-thread-report.jsp?dumpId=1&s=t) ## Debugging Java Applications on OpenShift and Kubernetes - [developers.redhat.com: Troubleshooting java applications on openshift (Jolokia)](https://developers.redhat.com/blog/2017/08/16/troubleshooting-java-applications-on-openshift/)