What tool can I use to evaluate the response time of a request (jdbc)
Ex:
query = "SELECT * FROM v$version WHERE banner LIKE '%Oracle%'";
ResultSet rs = stmt.executeQuery(query);
// linha de cima ⋀
// quanto tempo demorou nesse meio ?
// linha de baixo ⋁
rs.next();
No log appears
15:58:35.175 INFO - 6. SELECT * FROM v$version WHERE banner LIKE '%Oracle%'; {executed in 1 ms}
In fact the query was executed with 1ms
but there is a gap
between executing the query and loading this information.
What tool can I use to get this information?