views:

234

answers:

3

Hey,

I want to measure thread execution time in Java. Now I'm monitoring thread start and end times, but I think it's not so accurate because thread could be suspended during it execution.

+6  A: 

This is nontrivial. Your best bet is to use a profiler which can accumulate the actual CPU cycles used.

Aaron Digulla
+1 The JDK includes a profiler, JVisualVM, which is the first thing you could try.
Jesper
A: 

Java MXBeans can provide per-thread CPU time:

import java.lang.management.ManagementFactory;
import java.lang.management.ThreadMXBean;

long nanos = ManagementFactory.getThreadMXBean().getThreadCpuTime(Thread.currentThread().getId());
David Koski
A: 

Use a profiling solutions that supports multiple metrics. We call them (metrics) meters in our product supporting standard ones like CPU time, blocking time, waiting time even custom meters based on key performance indicators. I assume you would also like to see what exactly a thread is doing which in that case you definitely need to consider a product rather than a home grown ad hoc solution.

William Louth