Using Java Mission Control is it possible for us to find heap size, time frame and memory stats for a particular method call. In method profiling section, I am unable for figure out those!!
Java Performance: In Java Machine Control How to find heap size , time frame and memory stats for a particular method call
283 Views Asked by User27854 At
3
There are 3 best solutions below
0

To find heap size, you can use the totalMemory()
and maxMemory()
methods of the Runtime class.
long heapSize = Runtime.getRuntime().totalMemory();
long heapMaxSize = Runtime.getRuntime().maxMemory();
To measure the time taken by a particular method call, you can use the System.nanoTime() method to get the current time before and after the method call and calculate the difference.
long startTime = System.nanoTime();
// method call here
long endTime = System.nanoTime();
long duration = (endTime - startTime);
You can also use the -XX:+PrintGCDetails
JVM option to get more detailed information about garbage collection and memory usage.
0

in Memory
section | Allocation
Tab, you can find out which where specified objects are allocated memory
in Event
section | Graph
, and Thread
section | Latencies
there is some information about function call time
you can read this article and watch these slides , there are simple notes about JMC
I've written a program to show you how to implement that in JAVA. Please note that I am on Mac and I've run the program on Netbeans IDE 16.
Now, in the code below I used System.nanoTime() to get the taken time to run the code inside yourFunc()
For more details System.currentTimeMillis vs System.nanoTime
To get the heap size for the executed code ManagementFactory class that has a function getMemoryMXBean() which returns the managed bean for the memory system of the Java virtual machine.
Then with getHeapMemoryUsage() and getUsed() that gets the size used to allocate objects in the program.
Also By using totalMemory() & freeMemory(), you can calculate the memory used by the function as shown below.
Output: