Files
ebean/ebean-api/src/main/java/io/ebean/meta/ServerMetrics.java
T
Rob Bygrave e7dd5570a5 Remove deprecated methods in ebean-api - meta, metric, plugin. Migrate getFoo() -> foo()
These methods are deprecated getters, migrate to the associated accessor method.
2022-04-06 18:32:52 +12:00

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();
}