I want to know the number of extra objects created by processing a single request in my application.
I remember that OptimizeIt used to be able to do it. The steps, as I remember it were:
- Attach profiler to the application
- Run a small load on the server, so that all initialization activities happen
- "Force GC" from the profiler, which runs a full GC
- "Mark heap", so now we know the number of instances of each type in the heap
- Send one request to the server.
- The profiler shows what objects were created since the last "mark"
- "Force GC" again to see if any objects are lingering
OptimizeIt does not seem to be actively developed anymore (please correct me if I am wrong), and it does not seem to support Mac OS X.
Are there any other Java profilers for Mac OS X which support the scenario I outlined above?