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 timedMetrics(); /** * Return the query metrics. */ List queryMetrics(); /** * Return the Counter metrics. */ List countMetrics(); }