Package io.ebean.metric
Interface MetricFactory
public interface MetricFactory
Factory to create timed metric counters.
-
Method Summary
Modifier and Type Method Description CountMetriccreateCountMetric(String name)Create a counter metric.QueryPlanMetriccreateQueryPlanMetric(Class<?> type, String label, ProfileLocation profileLocation, String sql)Create a Timed metric.TimedMetriccreateTimedMetric(String name)Create a Timed metric.TimedMetricMapcreateTimedMetricMap(String name)Create a timed metric group.static MetricFactoryget()Return the factory instance.
-
Method Details
-
get
Return the factory instance. -
createTimedMetricMap
Create a timed metric group. -
createTimedMetric
Create a Timed metric. -
createCountMetric
Create a counter metric. -
createQueryPlanMetric
QueryPlanMetric createQueryPlanMetric(Class<?> type, String label, ProfileLocation profileLocation, String sql)Create a Timed metric.
-