Reputation: 1281
We are doing some performance testing of our application which uses SpringBoot 2.2.2 with Spring Actuator.
We want to monitor:
Is this information available in the actuator? I couldn't see which metrics I needed to use.
Upvotes: 2
Views: 3595
Reputation: 5105
By enabling Tomcats MBean Registry you will get more metrics collected, including thread pool metrics:
server.tomcat.mbeanregistry.enabled=true
Upvotes: 4