Package com.taobao.top.analysis.node.monitor

Examples of com.taobao.top.analysis.node.monitor.JobTaskExecutionLog


        container = old;
      }
    }
    try {
      container.lock.lock();
      JobTaskExecutionLog taskLog = null;
      for(JobTaskExecuteInfo info : infos) {
        taskLog = new JobTaskExecutionLog(jobName, info);
        if(container.logList.size() == MAX_CACHE_SIZE) {
          // 移除最老的一个
          container.logList.remove(0);
        }
        jobTaskLogger.info(taskLog);
View Full Code Here

TOP

Related Classes of com.taobao.top.analysis.node.monitor.JobTaskExecutionLog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.