props.getProperty(CallAnalysisInterceptor.class.getName() + ".checkingInterval", "3000"));
Long minStuckTime = Long.parseLong(
props.getProperty(CallAnalysisInterceptor.class.getName() + ".minStuckTIme", "10000"));
Long minTimeBetweenDumps = Long.parseLong(
props.getProperty(CallAnalysisInterceptor.class.getName() + ".minTimeBetweenDumps", "2000"));
MetricAnalysisConfiguration config = new MetricAnalysisConfiguration(
checkingInterval, minTimeBetweenDumps, minStuckTime);
callAnalyzer.configure(interceptorCheckpoint, config);
}