001package io.ebean.meta;
002
003/**
004 * The type of Metric.
005 */
006public enum MetricType {
007
008  /**
009   * Transactions.
010   */
011  TXN,
012
013  /**
014   * ORM queries.
015   */
016  ORM,
017
018  /**
019   * DTO queries.
020   */
021  DTO,
022
023  /**
024   * SQL queries with a label will have metrics collected.
025   * <p>
026   * SqlQuery and SqlUpdate without a label have no metrics collected.
027   */
028  SQL,
029
030  /**
031   * L2 cache metrics.
032   */
033  L2
034
035}