Enum Class RetryManagerMetricEntity

java.lang.Object
java.lang.Enum<RetryManagerMetricEntity>
com.linkedin.venice.stats.RetryManagerMetricEntity
All Implemented Interfaces:
ModuleMetricEntityInterface, Serializable, Comparable<RetryManagerMetricEntity>, Constable

public enum RetryManagerMetricEntity extends Enum<RetryManagerMetricEntity> implements ModuleMetricEntityInterface
  • Enum Constant Details

    • RETRY_RATE_LIMIT_TARGET_TOKENS

      public static final RetryManagerMetricEntity RETRY_RATE_LIMIT_TARGET_TOKENS
      Rate limit for retry operations (tokens per second)
    • RETRY_RATE_LIMIT_REMAINING_TOKENS

      public static final RetryManagerMetricEntity RETRY_RATE_LIMIT_REMAINING_TOKENS
      Number of remaining retry operations in the current time window.
    • RETRY_RATE_LIMIT_REJECTION_COUNT

      public static final RetryManagerMetricEntity RETRY_RATE_LIMIT_REJECTION_COUNT
      Number of rejected retry operations.
  • Method Details

    • values

      public static RetryManagerMetricEntity[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static RetryManagerMetricEntity valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getMetricEntity

      public MetricEntity getMetricEntity()
      Specified by:
      getMetricEntity in interface ModuleMetricEntityInterface