It seems like it should be simpler than it is to get a method's execution time. Is there a Timer utility class for things like timing how long a task takes, etc? Most of the searches on Google return results for timers that schedule threads and tasks, which is not what I want.
|
There is always the old-fashioned way:
|
|||||||||||||||||||||
|
|
Use a profiler (JProfiler, Netbeans Profiler, Visual VM, Eclipse Profiler, etc). You'll get the most accurate results and is the least intrusive. They use the built-in JVM mechanism for profiling which can also give you extra information like stack traces, execution paths, and more comprehensive results if necessary. When using a fully integrated profiler, it's faily trivial to profile a method. Right click, Profiler -> Add to Root Methods. Then run the profiler just like you were doing a test run or debugger. |
|||||||
|
|
I go with the simple answer. Works for me.
It works quite well. The resolution is obviously only to the millisecond, you can do better with System.nanoTime(). There are some limitations to both (operating system schedule slices, etc.) but this works pretty well. Average across a couple of runs (the more the better) and you'll get a decent idea. |
|||||||||||||
|
|
This probably isn't what you wanted me to say, but this is a good use of AOP. Whip an proxy interceptor around your method, and do the timing in there. The what, why and how of AOP is rather beyond the scope of this answer, sadly, but that's how I'd likely do it. Edit: Here's a link to Spring AOP to get you started, if you're keen. This is the most accessible implementation of AOP that Iive come across for java. Also, given everyone else's very simple suggestions, I should add that AOP is for when you don't want stuff like timing to invade your code. But in many cases, that sort of simple and easy approach is fine. |
|||||||
|
|
You might also want to look at the Apache Commons Lang StopWatch class. A simple but useful utility class. |
||||
|
|
|
JAMon API is a free, simple, high performance, thread safe, Java API that allows developers to easily monitor the performance and scalability of production applications. JAMon tracks hits, execution times (total, avg, min, max, std dev), and more. http://jamonapi.sourceforge.net/ download : http://sourceforge.net/project/showfiles.php?group_id=96550 |
|||
|
|
|
Also We can use StopWatch class of Apache commons for measuring the time. Sample code
|
||||
|
|
Just a small twist, if you don't use tooling and want to time methods with low execution time: execute it many times, each time doubling the number of times it is executed until you reach a second, or so. Thus, the time of the Call to System.nanoTime and so forth and the accuracy of System.nanoTime does affect the result much.
Of course, the caveats about using the wall clock apply: influences of JIT-compilation, multiple threads / processes etc. Thus, you need to first execute the method a lot of times first, such that the JIT compiler does its work, and then repeat this test multiple times and take the lowest execution time. |
||||
|
|
|
We are using AspectJ and Java annotations for this purpose. If we need to know to execution time for a method, we simple annotate it. A more advanced version could use an own log level that can enabled and disabled at runtime.
|
|||
|
|
I basically do variations of this, but considering how hotspot compilation works, if you want to get accurate results you need to throw out the first few measurements and make sure you are using the method in a real world (read application specific) application. If the JIT decides to compile it your numbers will vary heavily. so just be aware |
|||
|
|
|
Really good code. http://www.rgagnon.com/javadetails/java-0585.html
|
|||||||
|
|
If you want wall-clock time
|
|||
|
|
|
As "skaffman" said, use AOP OR you can use run time bytecode weaving, just like unit test method coverage tools use to transparently add timing info to methods invoked. You can look at code used by open source tools tools like Emma (http://downloads.sourceforge.net/emma/emma-2.0.5312-src.zip?modtime=1118607545&big_mirror=0). The other opensource coverage tool is http://prdownloads.sourceforge.net/cobertura/cobertura-1.9-src.zip?download. If you eventually manage to do what you set out for, pls. share it back with the community here with your ant task/jars. |
|||
|
|
|
Of course I should mention that most Java loggers give you timing for free too. Even org.apache.commons.logging.impl.SimpleLog can write timing information into the log file, so just add some log statements and you've got timing. See for example the Commons Logging guide. |
|||
|
|
|
You can use Perf4j. Very cool utility. Usage is simple
More information can be found in Developer Guide |
|||||
|
|
There are a couple of ways to do that. I normally fall back to just using something like this:
or the same thing with System.nanoTime(); For something more on the benchmarking side of things there seems also to be this one: http://jetm.void.fm/ Never tried it though. |
|||
|
|
|
||||
|
|
|
Come on guys! Nobody mentioned Guava way to do that (which is arguably awesome):
The nice thing that Stopwatch.toString() does a good job to select time units for the measurement. I.e. if the value is small, it'll output 38 ns, if it's long, it'll show 5m 3s Even nicer:
|
|||
|
|
|
|||||
|
|
|
|||
|
|
|
Using AOP/AspectJ and
Every call to this method will be sent to SLF4J logging facility with |
|||
|
|