In jprofiler how does the time in CPU views and Databases(jdbc/JPA) in call tree view coorelate with each other? How can i see if the bottleneck is at database calls or in java code
Is the time shown in call tree section of CPU views cumulative time of the whole request and include the time taken by JPA and JDBC calls or is it only of CPU and does not include IO times. Is the total time of request is what i seen in call tree section of CPU views or is it a sum total of call tree timings for database and CPU views
Question on different lines: I see a significant amount of times taken in java core classes like BigDecimal. Double.value of, Calendar.getInstance. They are a lot of invocations of these methods from my application. Also if I add these classes in my list of ignored classes in filter settings the overall time of my method which calls these classes is reduced. So can I assume that the large time reported in these methods was actually overhead introduced by Jprofiler.