Thread dumps show threads stuck in RUNNABLE state.
If a thread remains in RUNNABLE state without progress, it might be caught in an infinite loop. In a Java application, reviewing stack traces in a thread dump can pinpoint the loop, especially critical during high-demand periods like Black Friday.
Additional Notes
How can thread dumps help identify infinite loops?