object MetricKind extends GeneratedEnumCompanion[MetricKind] with Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- MetricKind
- Serializable
- Serializable
- GeneratedEnumCompanion
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- sealed trait Recognized extends MetricKind
-
final
case class
Unrecognized(unrecognizedValue: Int) extends MetricKind with UnrecognizedEnum with Product with Serializable
- Annotations
- @SerialVersionUID()
-
type
ValueType = MetricKind
- Definition Classes
- GeneratedEnumCompanion
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- implicit def enumCompanion: GeneratedEnumCompanion[MetricKind]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
fromName(name: String): Option[MetricKind]
- Definition Classes
- GeneratedEnumCompanion
-
def
fromValue(__value: Int): MetricKind
- Definition Classes
- MetricKind → GeneratedEnumCompanion
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
javaDescriptor: EnumDescriptor
- Definition Classes
- MetricKind → GeneratedEnumCompanion
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
scalaDescriptor: EnumDescriptor
- Definition Classes
- MetricKind → GeneratedEnumCompanion
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
lazy val
values: Seq[Recognized]
- Definition Classes
- MetricKind → GeneratedEnumCompanion
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
object
CUMULATIVE extends MetricKind with Recognized with Product with Serializable
A value accumulated over a time interval.
A value accumulated over a time interval. Cumulative measurements in a time series should have the same start time and increasing end times, until an event resets the cumulative value to zero and sets a new start time for the following points.
- Annotations
- @SerialVersionUID()
-
object
DELTA extends MetricKind with Recognized with Product with Serializable
The change in a value during a time interval.
The change in a value during a time interval.
- Annotations
- @SerialVersionUID()
-
object
GAUGE extends MetricKind with Recognized with Product with Serializable
An instantaneous measurement of a value.
An instantaneous measurement of a value.
- Annotations
- @SerialVersionUID()
-
object
METRIC_KIND_UNSPECIFIED extends MetricKind with Recognized with Product with Serializable
Do not use this default value.
Do not use this default value.
- Annotations
- @SerialVersionUID()