I have a standalone java springboot application which has JDBC connections setup like below:
Java code:
spring:
datasource:
hikari:
driver-class-name: oracle.jdbc.driver.OracleDriver
jdbc-url: jdbc:oracle:thin:@dbhost:1521/db01.world
username: WEB_USER
password: password
I get all Introscope stats like CPU, Heap, THREADS, JMX etc but could not find the number of JDBC connections that my springboot application makes.
Can you please guide me on how to get JDBC stats for springboot in introscope.
Note: We get JDBC stats in introscope for several weblogic and Websphere java application server but not sure how-to for a standalone springboot java application.