Enum Class InstrumentType

java.lang.Object
java.lang.Enum<InstrumentType>
org.elasticsearch.telemetry.InstrumentType
All Implemented Interfaces:
Serializable, Comparable<InstrumentType>, Constable

public enum InstrumentType extends Enum<InstrumentType>
Enum with the different types for use as keys. This enum acts a bridge between the Otel and Elasticsearch versions of each of the instruments.
  • Enum Constant Details

    • DOUBLE_COUNTER

      public static final InstrumentType DOUBLE_COUNTER
    • LONG_COUNTER

      public static final InstrumentType LONG_COUNTER
    • LONG_ASYNC_COUNTER

      public static final InstrumentType LONG_ASYNC_COUNTER
    • DOUBLE_ASYNC_COUNTER

      public static final InstrumentType DOUBLE_ASYNC_COUNTER
    • DOUBLE_UP_DOWN_COUNTER

      public static final InstrumentType DOUBLE_UP_DOWN_COUNTER
    • LONG_UP_DOWN_COUNTER

      public static final InstrumentType LONG_UP_DOWN_COUNTER
    • DOUBLE_HISTOGRAM

      public static final InstrumentType DOUBLE_HISTOGRAM
    • LONG_HISTOGRAM

      public static final InstrumentType LONG_HISTOGRAM
    • DOUBLE_GAUGE

      public static final InstrumentType DOUBLE_GAUGE
    • LONG_GAUGE

      public static final InstrumentType LONG_GAUGE
  • Field Details

    • isDouble

      public final boolean isDouble
    • isLong

      public final boolean isLong
  • Method Details

    • values

      public static InstrumentType[] 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 InstrumentType 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
    • fromInstrument

      public static InstrumentType fromInstrument(Instrument instrument)