2022-12-05 15:34:01
Topic starter
Platform is using a lot of CPU. But I know it has a lot of threads. How can I figure out which *thread* is using up CPU?
Get the java process id, then run:
top -H -p <pid>
It will report back on precisely which threads are using CPU. In this case, we're being eaten alive by Garbage Collection.