Capturing Browser/Application/Database Data Transfer Sizes

Questions about YourKit Java Profiler
Post Reply
rickbryant
Posts: 1
Joined: Wed Jun 10, 2020 7:32 pm

Capturing Browser/Application/Database Data Transfer Sizes

Post by rickbryant »

Is there a way to capture the size of the data transferred between the application and the client browser per transaction? Is there a way to capture the size of the data transferred between the application and the database for each SQL statement? For example, when our application executes, we'd like to capture the following 4 scenarios:
1) the size of the data transferred from the database to the application when a SELECT statement is executed
2) the size of the data transferred from the application to the database when an UPDATE or INSERT statement is executed
3) the size of the data transferred from the application to the client browser when a servlet controller (or a JSP) sends a response
4) the size of the data transferred from the client browser to the application when a servlet controller (or a JSP) receives a request

Thanks,
Rick
Anton Katilin
Posts: 6172
Joined: Wed Aug 11, 2004 8:37 am

Re: Capturing Browser/Application/Database Data Transfer Siz

Post by Anton Katilin »

Hi Rick

Please try the "Timeline" in "Events" view:
https://www.yourkit.com/docs/java/help/ ... meline.jsp

For example, if an SQL call involves socket data transfer, you can see them as nested events.

Best regards,
Anton
Post Reply