public long totalCallTime(String methodName) {
   return (long) monitorFactory.getMonitor(methodName, "ms.").getTotal();
 }
 public long minimumCallTime(String methodName) {
   return (long) monitorFactory.getMonitor(methodName, "ms.").getMin();
 }
 public long callCount(String methodName) {
   return (long) monitorFactory.getMonitor(methodName, "ms.").getHits();
 }
 public long lastCallTime(String methodName) {
   return (long) monitorFactory.getMonitor(methodName, "ms.").getLastValue();
 }
 public long averageCallTime(String methodName) {
   return (long) monitorFactory.getMonitor(methodName, "ms.").getAvg();
 }