For the profiler which I implement using JVMTI I would like to start measuring the execution time of all Java methods. The JVMTI offers the events:
MethodEntryMethodExit
So this would be quite easy to implement, however I came across this note in the API:
Enabling method entry or exit events will significantly degrade performance on many platforms and is thus not advised for performance critical usage (such as profiling). Bytecode instrumentation should be used in these cases.
But my profiling agent works headless, which means the collected data is serialized and sent via socket to a server application displaying the results. How should I realize this using byte code instrumentation. I am kind of confused how to go on from here. Could someone explain to me, if I have to switch the strategy or how can I approach this problem?
premainwhich is passed anInstrumentationwhich gets all the byte code of every class which is loaded. It can also be used to re-load classes later. You can use a library like ObjectWeb ASM to change the byte code to insert to code for timers/counter for methods, fields etc (anything you like) and store this in a POJO data structure which you can send over a plain Socket. – Peter Lawrey May 11 '11 at 11:06