Hi there - is there a non-FusionReactor way to det...
# lucee
g
Hi there - is there a non-FusionReactor way to determine the "current" requests in play? Java / Tomcat on one of my servers is pegged at 99% and I am trying to work out the cause.
b
@gavinbaumanis You can pull a thread dump of the JVM. It will only be a fraction of the information FR provides, but it's a start.
Java 11 and previous use
jstack
which comes in the bin folder of a JDK.
There's quite likely some plugin for Lucee that will pull this as well for you. @zackster?
z
message has been deleted
👍🏼 1
👍 1
g
Thanks @bdw429s / @zackster very much. I will play around with the extension and see if it helps me out.