001package io.ebean.meta; 002 003/** 004 * Metrics collected by Ebean including timed metrics and counters. 005 */ 006public interface MetaMetric { 007 008 /** 009 * Return the metric name. 010 */ 011 String getName(); 012 013}
001package io.ebean.meta; 002 003/** 004 * Metrics collected by Ebean including timed metrics and counters. 005 */ 006public interface MetaMetric { 007 008 /** 009 * Return the metric name. 010 */ 011 String getName(); 012 013}