Package io.ebean.metric
Interface TimedMetricMap
public interface TimedMetricMap
A map of timed metrics keyed by a string.
-
Method Summary
Modifier and Type Method Description voidadd(String key, long exeMicros)Add an execution for the given key.voidaddSinceNanos(String key, long startNanos)Add a time event given the start nanos.voidvisit(MetricVisitor visitor)Visit the metric.
-
Method Details
-
addSinceNanos
Add a time event given the start nanos. -
add
Add an execution for the given key. -
visit
Visit the metric.
-