for (int i=0;i<10;i++) {
new Thread(new Runnable() {
public void run() {
while (true) {
CountingStopwatch stopwatch = Audits.getCountingStopwatch(COUNTING_STOPWATCH_ID);
stopwatch.start();
try {
Thread.sleep((long) (Math.random() * 100));
} catch (InterruptedException e) {
e.printStackTrace();
}