Reputation: 3330
In order to monitor any normal Java process JVM, we can use the Attach API. Is there an API available to monitor a WebSphere JVM ?
Upvotes: 2
Views: 3234
Reputation: 1954
You may use PMI (Performance Monitoring Infrastructure) to monitor both JVM and Java EE related metrics. PMI monitoring data my me accessed using
You may find following page helpful since you intend to use JMX, as it contains sample code for implementing a JMX client to access PMI data;
Developing your own monitoring applications
You may find information about other methods at monitoring section of Infocenter.
Upvotes: 3