Package io.ebean.meta
Interface ServerMetrics
-
- All Known Implementing Classes:
BasicMetricVisitor
public interface ServerMetrics
Metrics of the Database instance.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<MetaCountMetric>
getCountMetrics()
Return the Counter metrics.List<MetaQueryMetric>
getQueryMetrics()
Return the query metrics.List<MetaTimedMetric>
getTimedMetrics()
Return timed metrics for Transactions, labelled SqlQuery, labelled SqlUpdate.
-
-
-
Method Detail
-
getTimedMetrics
List<MetaTimedMetric> getTimedMetrics()
Return timed metrics for Transactions, labelled SqlQuery, labelled SqlUpdate.
-
getQueryMetrics
List<MetaQueryMetric> getQueryMetrics()
Return the query metrics.
-
getCountMetrics
List<MetaCountMetric> getCountMetrics()
Return the Counter metrics.
-
-