for (Method method : klass.getMethods()) {
// MethodBean methodBean = new MethodBean(method);
// methodBeans.put(method, methodBean);
String methodStr = toString(method);
cpuMeterMap.put(methodStr, new CpuMeter());
executionTimers.put(methodStr, new Timer());
executionCounters.put(methodStr, new Counter());
}
}
lock = new ReentrantLock();
}