mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
These methods are deprecated getters, migrate to the associated accessor method.
26 lines
435 B
Java
26 lines
435 B
Java
package io.ebean.meta;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Metrics of the Database instance.
|
|
*/
|
|
public interface ServerMetrics {
|
|
|
|
/**
|
|
* Return timed metrics for Transactions, labelled SqlQuery, labelled SqlUpdate.
|
|
*/
|
|
List<MetaTimedMetric> timedMetrics();
|
|
|
|
/**
|
|
* Return the query metrics.
|
|
*/
|
|
List<MetaQueryMetric> queryMetrics();
|
|
|
|
/**
|
|
* Return the Counter metrics.
|
|
*/
|
|
List<MetaCountMetric> countMetrics();
|
|
|
|
}
|