makdown fix

This commit is contained in:
Inaki Fernandez
2020-05-21 11:06:13 +02:00
parent 209dd8dfee
commit 552da79828
+10 -10
View File
@@ -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/)