How can we monitor the number of active connection count handled by XNIO/Undertow in EAP 7? I need to know the number of current request count in ajp/http listener in jboss EAP 7. Is there a way to know the actual ajp (or http) busy thread?
Here is the actual exception java.util.concurrent.RejectedExecutionException: Task java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask@3d6dcd62 rejected from java.util.concurrent.ScheduledThreadPoolExecutor@4a4b91b0[Terminated, pool size = 0, active threads = 0, queued tasks = 0, compl...
java.util.concurrent.RejectedExecutionException: Task java.util.concurrent.FutureTask@4a7bda53 rejected from java.util.concurrent.ThreadPoolExecutor@12cb2d04[Running, pool size = 100, active threads = 100, queued tasks = 0, completed tasks = 6626] at java.util.concurrent.ThreadPoolExecutor$AbortPo...
How can we monitor the number of active busy threads in XNIO/Undertow task thread pool in JBoss EAP 7? How can we monitor the number of active busy threads of XNIO/Undertow web threads in JBoss EAP 7? How can we monitor the number of active connection count handled by XNIO/Undertow in...