Package io.webfolder.cdp.command
Interface Performance
public interface Performance
-
Method Summary
Modifier and Type Method Description voiddisable()Disable collecting and reporting metrics.voidenable()Enable collecting and reporting metrics.java.util.List<Metric>getMetrics()Retrieve current values of run-time metrics.voidsetTimeDomain(TimeDomain timeDomain)Sets time domain to use for collecting and reporting duration metrics.
-
Method Details
-
disable
void disable()Disable collecting and reporting metrics. -
enable
void enable()Enable collecting and reporting metrics. -
setTimeDomain
Sets time domain to use for collecting and reporting duration metrics. Note that this must be called before enabling metrics collection. Calling this method while metrics collection is enabled returns an error.- Parameters:
timeDomain- Time domain
-
getMetrics
java.util.List<Metric> getMetrics()Retrieve current values of run-time metrics.- Returns:
- Current values for run-time metrics.
-