org.easymetrics.easymetrics.engine.MetricsCollector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easymetrics Show documentation
Show all versions of easymetrics Show documentation
EasyMetrics is a metrics framework to collect runtime usage information to indicate the realtime application performance.
/**
*
*/
package org.easymetrics.easymetrics.engine;
/**
* @author Administrator
*
*/
public interface MetricsCollector {
MetricsTimer startMetricsTimer(String functionName, String correlationId, boolean startNew);
MetricsTimer startMetricsTimer(String functionName, String correlationId);
MetricsTimer startMetricsTimer(String functionName);
MetricsTimer startInitialTimer(String functionName, String correlationId);
MetricsTimer startInitialTimer(String functionName);
}