Package com.taobao.profile.utils

Examples of com.taobao.profile.utils.DailyRollingFileWriter


   *
   * @param config
   */
  public DataDumpThread(ProfConfig config) {
    // 读取用户配置
    fileWriter = new DailyRollingFileWriter(config.getLogFilePath());
    eachProfUseTime = config.getEachProfUseTime();
    eachProfIntervalTime = config.getEachProfIntervalTime();
  }
View Full Code Here


   *
   * @param config
   */
  public SamplerThread(ProfConfig config) {
    // 读取配置
    fileWriter = new DailyRollingFileWriter(config.getSamplerFilePath());
    samplerIntervalTime = config.getSamplerIntervalTime();
  }
View Full Code Here

TOP

Related Classes of com.taobao.profile.utils.DailyRollingFileWriter

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.