public enum MetricType extends Enum<MetricType>
Enum Constant and Description |
---|
CONCURRENT_GAUGE
A concurrent gauge counts the number of parallel invocations of
a target (method).
|
COUNTER
A Counter monotonically increases its values.
|
GAUGE
A Gauge has values that 'arbitrarily' goes up/down at each
sampling.
|
HISTOGRAM
A Histogram calculates the distribution of a value.
|
INVALID
Invalid - Placeholder
|
METERED
A Meter measures the rate at which a set of events occur.
|
TIMER
A timer aggregates timing durations and provides duration
statistics, plus throughput statistics
|
Modifier and Type | Method and Description |
---|---|
static MetricType |
from(Class<?> in)
Convert the metric Java class into a MetricType
|
static MetricType |
from(String in)
Convert the string representation into an enum
|
String |
toString() |
static MetricType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MetricType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetricType CONCURRENT_GAUGE
public static final MetricType COUNTER
public static final MetricType GAUGE
public static final MetricType METERED
public static final MetricType HISTOGRAM
public static final MetricType TIMER
public static final MetricType INVALID
public static MetricType[] values()
for (MetricType c : MetricType.values()) System.out.println(c);
public static MetricType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<MetricType>
public static MetricType from(String in)
in
- the String representationIllegalArgumentException
- if in is not a valid enum valuepublic static MetricType from(Class<?> in)
in
- The metric classIllegalArgumentException
- if in is not a valid metric classCopyright © 2022. All rights reserved.