I have been poking the AZUL JFR profiler to see gaps in my system. But i am not able to get full trace of the call being made.
Now since the trace is only till HashMap, how can i get which method is calling it ?
Asked
Active
Viewed 53 times
0

Alpit Anand
- 1,213
- 3
- 21
- 37
-
1Try [async-profiler](https://github.com/jvm-profiling-tools/async-profiler/), it usually yields more accurate stack traces. If the problem remains, use [Java method profiling](https://github.com/jvm-profiling-tools/async-profiler/#java-method-profiling) option to find the exact callers of `java.util.HashMap$TreeNode.putTreeVal` – apangin Jan 02 '23 at 16:31
-
Ok let me check that. – Alpit Anand Jan 03 '23 at 04:46