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 name();
012
013  /**
014   * Migrate to name().
015   */
016  @Deprecated
017  default String getName() {
018    return name();
019  }
020}