Reputation: 41
I'm using tomcat to deploy my application. DataSource (OracleDataSource) is defined as a Spring bean. I'm interested in monitoring datasource connection pool. Are there any tools available to monitor datasource?
Upvotes: 3
Views: 3356
Reputation: 1743
Or you could use JavaMelody (opensource) to monitor datasources from Spring, JNDI, etc. For example, you can have graphics of jdbc connections or statistics on sql requests.
Upvotes: 1
Reputation: 31371
You could install either LambdaProbe or it's fork PSIProbe which will give you details such as this.
Both are open source products and usage is very similar to the Tomcat Manager.
LambdaProbe does not seem to be maintained any more. PSIProbe definitely has datasource collector info
Upvotes: 4